*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#020914;
    color:#fff;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

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;
}

/*======================================
        NAVBAR
======================================*/
.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-container h1{
    font-size: 1.8rem;
    font-family: system-ui;
    font-weight: 700;
    letter-spacing: 9px;
    color: white;
}
.nav-container span{
    color:#1677ff;
}
.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;
}
/*======================================
        SEARCH
======================================*/
.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);
}
/*======================================
      HAMBURGER
======================================*/
.hamburger{
    display:none;
    width:32px;
    cursor:pointer;
}
.bar{
    display:block;
    height:3px;
    margin:6px 0;
    background:#fff;
    border-radius:5px;
    transition:.3s;
}

/* Breadcrumb */
.breadcrumb{
    padding:25px 55px;
    color:#aaa;
    margin-top:90px;
}
/* Main */

main{
    padding:0 55px;
}

/* Product Top */

.product-top{
    display:grid;
    grid-template-columns:1.1fr 1.5fr .9fr;
    gap:30px;
    margin-top: 50px;
}

/* Gallery */

.gallery{
    border: 2px solid #243247;
    background: #111b2b;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
    padding:20px;
    border-radius:15px;
}
.gallery #mainImage{
    width:100%;
    height:280px;
    object-fit:contain;
    border-radius: 15px;
}
.thumbs{
    display:flex;
    gap:10px;
    margin-top:20px;
}
.thumbs img{
    width:60px;
    height:60px;
    background:#111c2d;
    padding:5px;
    border-radius:8px;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
}

/* Product Info */

.badge{
    background:#1677ff;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
}
.product-info h1{
    font-size:2.3rem;
    font-weight: 500;
    margin:20px 0;
    font-family: system-ui;
}
.rating{
    color:#ffc400;
    margin-bottom:20px;
}
/* Variant Section */

.variant-box{
    margin:20px 0;
}

.variant-box h3{
    margin-bottom:12px;
    font-size:18px;
}

.variant-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.variant-btn{
    padding:10px 18px;
    border:2px solid #1677ff;
    background:#fff;
    color:#1677ff;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.variant-btn:hover{
    background:#1677ff;
    color:#fff;
}

.variant-btn.active{
    background:#1677ff;
    color:#fff;
}
.product-info p{
    color:#c4c9d2;
    line-height:1.7;
}
.features{
    display:flex;
    gap:15px;
    margin-top:35px;
}
.features div{
    border: 2px solid #243247;
    background: #111b2b;
    padding:15px;
    border-radius:10px;
    text-align:center;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
}
.features-logo{
    font-size: 2.2rem;
    font-weight: bold;
}
.features b{
    display:block;
    font-size:20px;
    color:#fff;
    padding-top: 10px;
}
.features small{
    color:#aaa;
}

/* Buy Box */
.buy-box{
    border: 2px solid #243247;
    background: #111b2b;
    padding:25px;
    border-radius:15px;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
}

.buy-box h3{
    font-family: system-ui;
    letter-spacing: 1px;
}
.buy-box h2{
    font-size:32px;
    margin:15px 0;
    margin-bottom: 20px;
}


#buy-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;
}


.stores{
    margin-top:20px;
}


.stores p{
    padding:15px 0;
    border-bottom:1px solid #263246;
    font-family: system-ui;
    font-weight: 600;
    font-size: 1.2rem;
}


.stores a{
    text-decoration: none;
    font-family: system-ui;
    font-weight: 700;
    float:right;
    color:#1680ff;
}

/* Review */
.review{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    margin-left: 50px;
}
.review h2,
.specs h2,
.comparison h2{
    margin-bottom:20px;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: system-ui;
    margin-left: 70px;
}
.review p{
    color:#bbb;
    line-height:1.8;
    margin-left: 70px;
}

.pros-cons{
    display: flex;
    flex-wrap: wrap;
    gap:30px;
    justify-content: center;
    margin-top:30px;
    list-style: none;
}
.pros,
.cons{
    width: 700px;
    border: 2px solid #243247;
    background: #111b2b;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
    padding:35px;
    border-radius:15px;
}
.pros h3{
    color:#38d36b;
    font-family: system-ui;
}
.cons h3{
    color:#ff4141;
    font-family: system-ui;
}
li{
    margin:15px 0;
    color:#ccc;
    list-style: none;
}
.pros li::before {
  content: "✓ ";
  color: #38d36b;
  font-weight: bold;
}
.cons li::before {
  content: "✓ ";
  color: #ff4141;
  font-weight: bold;
}


/* Specs */
.specs{
    margin-top:40px;
    margin-left: 50px;
}
.specs-table {
    width:80% ;
    border-collapse:collapse;
    border: 2px solid #243247 ;
    background: #111b2b ;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8) ;
    margin-left: 170px ;
    margin-top: 30px ;
    
}

.specs-table td{
    padding:18px;
    border-bottom:1px solid #263246;
    color:#ccc;
    border-radius: 12px;
}

/* sltder section 4 */
.highlights-section{
    max-width:1500px;
    margin:40px auto;
}
.section-title{
    font-size:22px;
    font-weight:700;
    color:#e2e8f0;
    margin-bottom:20px
}

.slider-wrapper{
    position:relative;
    display:flex;
    align-items:center
}
.slider-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:10px 0;
  -webkit-overflow-scrolling:touch;
}
.slider-track::-webkit-scrollbar{display:none}

.compare-card{
  flex:0 0 100%; /* MOBILE: 1 card */
  scroll-snap-align:start;
  background:#0f172a;
  border:1px solid #1e293b;
  border-radius:12px;
  padding:12px;
  transition:0.3s;
}
.compare-card:hover{
    border-color:#3b82f6
}

.card-img{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    margin-bottom:12px
}
.card-img img{
    width:150px;
    height:80px;
    object-fit:cover;
    background:#fff;
    border-radius:8px;
}
.card-img span{
    font-size:12px;
    font-weight:700;
    color:#3b82f6;
    background:#1e293b;
    padding:4px 8px;
    border-radius:6px
}

.card-content h4{
    font-size:14px;
    color:#e2e8f0;
    margin-bottom:8px;
    line-height:1.4
}
.card-content h4 span{
    color:#3b82f6;
    font-weight:700
}
.view-btn{
    font-size:12px;
    color:#3b82f6;
    text-decoration:none;
    font-weight:600
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;height:40px;
  border-radius:50%;
  border:none;
  background:#2563EB;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  z-index:2;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(37,99,235,0.4);
}
.slider-btn:hover{background:#1D4ED8}
.prev-btn{left:-20px}
.next-btn{right:-20px}

.price-note{
  display:flex;
  align-items:center;
  justify-content:space-between;

  background:#0f172a;
  border:1px solid #1e293b;
  border-radius:10px;
  padding:14px 16px;
  margin-top:20px;
}
.price-note p{
    font-size:13px;
    color:#94a3b8;
    display:flex;
    gap:8px
}
.check-btn{
    background:#2563EB;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:10px 16px;
    font-size:13px;
    font-weight:600;
    cursor:pointer
}


.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;
}


.comparesection {
    width: 100%;
    padding: 30px;
    background:
        radial-gradient(circle at 50% 20%, rgba(0, 80, 180, 0.10), transparent 45%),
        #020916;
    margin-left: 80px;
    margin-top: 40px;
}

/* ================= HEADER ================= */

.compareheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.title-area {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.tag-icon {
    font-size: 38px;
    color: #1688ff;
    line-height: 1;
}

.title-area h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.title-area h3 span {
    color: #1688ff;
}

.subtitle {
    margin-top: 10px;
    color: #c4cad4;
    font-size: 17px;
}

.updated {
    color: #c6ccd6;
    font-size: 15px;
    padding-top: 8px;
    margin-right: 80px;
}

.updated strong {
    color: #1688ff;
}

/* ================= TABLE ================= */

.table-wrapper {
    width: 95%;
    overflow-x: auto;
    border: 1px solid rgba(20, 125, 255, 0.55);
    border-radius: 15px;
    background: rgba(2, 13, 28, 0.9);
    box-shadow:
        0 0 18px rgba(0, 105, 255, 0.12),
        inset 0 0 30px rgba(0, 80, 180, 0.04);
    
}

.price-table {
    width: 100% ;
    min-width: 1050px ;
    border-collapse: collapse ;
    table-layout: fixed ;
}

/* HEADER */

.price-table thead th {
    height: 68px ;
    padding: 15px 12px ;
    background: linear-gradient(
        180deg,
        #0758cf 0%,
        #063b9a 100%
    ) ;

    border-right: 1px solid rgba(255,255,255,0.12) ;

    font-size: 13px ;
    font-weight: 700 ;
    text-transform: uppercase;
    white-space: nowrap;
}
.price-table thead th span{
    font-size: 1.5rem;
}

.price-table thead th:last-child {
    border-right: none ;
}

.th-icon {
    margin-right: 8px ;
    font-size: 17px ;
}

/* COLUMN WIDTHS */

.price-table th:nth-child(1),
.price-table td:nth-child(1) {
    width: 14% ;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
    width: 12% ;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
    width: 12% ;
}

.price-table th:nth-child(4),
.price-table td:nth-child(4) {
    width: 14% ;
}

.price-table th:nth-child(5),
.price-table td:nth-child(5) {
    width: 12% ;
}

.price-table th:nth-child(6),
.price-table td:nth-child(6) {
    width: 14% ;
}

.price-table th:nth-child(7),
.price-table td:nth-child(7) {
    width: 11% ;
}

.price-table th:nth-child(8),
.price-table td:nth-child(8) {
    width: 11%;
}

/* ROWS */

.price-table tbody tr {
    height: 130px ;
    transition: background 0.2s ease ;
}

.price-table tbody tr:hover {
    background: rgba(12, 80, 160, 0.12) ;
}

.price-table td {
    padding: 20px 12px ;
    text-align: center ;
    border-right: 2px solid rgba(70, 100, 140, 0.25) ;
    border-bottom: 2px solid rgba(70, 100, 140, 0.25) ;
    vertical-align: middle ;
}

.price-table td:last-child {
    border-right: none ;
}

.price-table tbody tr:last-child td {
    border-bottom: none ; 
}

/* ================= STORE ================= */

.store {
    display: flex;
    align-items: center;
    gap: 13px;
    text-align: left;
}

.store-logo {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    object-fit: contain;
    background: #ffffff;
    padding: 5px;
}

.store-name {
    font-size: 17px;
    font-weight: 700;
}

.badge {
    display: inline-block;
    margin-top: 9px;
    padding: 5px 9px;
    border-radius: 5px;
    background: rgba(25, 116, 220, 0.18);
    color: #65aaff;
    font-size: 11px;
}

/* ================= PRICE ================= */

.price {
    color: #28e878;
    font-size: 20px;
    font-weight: 700;
}

.price.best {
    color: #27e878;
}

.price-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 9px;
    border-radius: 6px;
    background: rgba(26, 180, 100, 0.16);
    color: #35ed8a;
    font-size: 11px;
    font-weight: 700;
}

/* ================= DELIVERY ================= */

.delivery-time {
    font-size: 16px;
    font-weight: 600;
}

.small-badge {
    display: inline-block;
    margin-top: 9px;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(20, 94, 180, 0.25);
    color: #65adff;
    font-size: 11px;
}

.small-badge.standard {
    background: rgba(90, 105, 130, 0.25);
    color: #c4cbd5;
}

/* ================= SHIPPING ================= */

.free {
    color: #35ec82;
    font-size: 17px;
    font-weight: 700;
}

.shipping-icon {
    display: inline-block;
    margin-top: 8px;
    padding: 9px 13px;
    border-radius: 7px;
    background: rgba(25, 170, 90, 0.13);
    color: #45ec8c;
    font-size: 12px;
}

.shipping-cost {
    font-size: 17px;
    font-weight: 700;
}

.sub-text {
    display: block;
    margin-top: 7px;
    color: #aeb6c3;
    font-size: 12px;
}

/* ================= RETURN ================= */

.return-days {
    font-size: 16px;
    font-weight: 600;
}

.return-text {
    margin-top: 8px;
    color: #aeb6c3;
    font-size: 13px;
}

/* ================= PAYMENT ================= */

.payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-badge {
    display: block;
    width: max-content;
    min-width: 105px;
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
}

.cod {
    color: #48ef91;
    background: rgba(30, 170, 90, 0.15);
}

.online {
    color: #419eff;
    background: rgba(25, 90, 200, 0.18);
}

.bank {
    color: #b76cff;
    background: rgba(120, 45, 190, 0.18);
}

/* ================= RATING ================= */

.rating {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.star {
    color: #ffc928;
    font-size: 22px;
}
.sold{
    color: #35ec82;
    font-size:17px ;
}
.reviews {
    display: block;
    margin-top: 8px;
    color: #b5bdc9;
    font-size: 12px;
}

/* ================= BUY BUTTON ================= */

.buy-bttn {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #1689ff,
        #0068d8
    );

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 5px 15px rgba(0, 100, 255, 0.22);

    transition: all 0.2s ease;
}

.buy-bttn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 120, 255, 0.35);
}

.go-to {
    display: block;
    margin-top: 10px;
    color: #1689ff;
    font-size: 12px;
    text-decoration: none;
}

/* ================= FOOTER ================= */

.table-note {
    margin-top: 15px;
    padding: 16px 20px;

    border: 1px solid rgba(80, 120, 170, 0.25);
    border-radius: 12px;

    background: rgba(12, 29, 50, 0.65);

    color: #b9c1cc;
    font-size: 15px;
}

/* fade up animation */

main{
    animation:fadeUp .6s ease;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


 /*=========================================
        TABLET
=========================================*/
@media(max-width:992px){
.search input{
    max-width:250px;
}
.nav-menu{
    gap:1px;
}
}


@media (max-width: 768px){
    body{
        padding-bottom: 80px;
    }
    /* NAVBAR MOBILE */
    .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;
    }
    .breadcrumb{
        padding: 20px 25px;
        margin-top: 122px;
    }
  main{
    padding: 0 15px; /* Side padding kam */
  }

  /* 1. PRODUCT TOP: GALLERY LEFT + INFO RIGHT */
  .product-top{
    display: grid;
    grid-template-columns: 1fr; /* Gallery 38%, Info 62% */
    gap: 25px;
    margin-top: 10px;
  }

  /* GALLERY */
  .gallery{
    padding: 12px;
    border-radius: 12px;
  }
  .gallery #mainImage{
    height: 213px; /* Chota kiya */
  }
  .thumbs{
    gap: 6px;
    margin-top: 10px;
    overflow-x: auto;
  }
  .thumbs img{
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  /* PRODUCT INFO */
  .product-info h1{
    font-size: 1.3rem; /* Chota */
    margin: 0 0 8px 0;
  }
  .badge{
    font-size: 10px; 
    padding: 3px 8px;
}
  .rating{
    font-size: 12px; 
    margin-bottom: 10px;
}
  .product-info p{
    font-size: 12px;
    line-height: 1.6;
  }
  
  /* FEATURES: 4 IN 1 ROW NEECGE */
  .features{
    grid-column: 1 / -1; /* Full width */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 25px;
  }
  .features div{
    padding: 8px 5px;
  }
  .features-logo{
    font-size: 1.5rem;
}
  .features b{
    font-size: 12px; 
    padding-top: 5px;
}
  .features small{font-size: 9px;}

  /* BUY BOX: FULL WIDTH NEECHE */
  .buy-box{
    grid-column: 1 / -1;
    padding: 16px;
    border-radius: 12px;
  }
  .buy-box h3{font-size: 12px;}
  .buy-box h2{font-size: 22px; margin: 8px 0 12px;}
  #buy-btn{
    width: 100%;
    padding: 12px;
    font-size: 18px;
    display: block;
    text-align: center;
  }
  .stores p{
    font-size: 13px;
    padding: 10px 0;
  }

  /* 2. REVIEW SECTION */
  .review{
    margin-top: 30px;
    margin-left: 0; /* margin hataya */
  }
  .review h2{
    font-size: 1.2rem;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .review p{
    font-size: 13px;
    margin-left: 0;
    line-height: 1.6;
  }

  /* PROS CONS: 2 COLUMN SIDE BY SIDE - PIC JESA */
  .pros-cons{
    gap: 12px;
    margin-top: 15px;
  }
  .pros, .cons{
    width: 100%; /* 700px hataya */
    padding: 14px;
    border-radius: 10px;
  }
  .pros h3, .cons h3{font-size: 14px; margin-bottom: 8px;}
  .pros-cons li{
    font-size: 11px;
    margin: 8px 0;
  }
  .cons li::before {content: "✗ "; color: #ff4141;} /* X sign theek kiya */

  /* 3. SPECS */
  .specs{
    margin-top: 25px;
    margin-left: 0;
  }
  .specs h2{
    font-size: 1.2rem;
    margin-left: 0;
    margin-bottom: 12px;
  }
  .specs-table{
    width: 100%; /* 80% hataya */
    margin-left: 0;
    margin-top: 0;
  }
  .specs-table td{
    padding: 10px 8px;
    font-size: 12px;
  }
  td:first-child{width: 40%; color: #aaa;}

  /* 4. COMPARISON */
  .comparison-product{margin-top: 30px; margin-bottom: 40px;}
  .comparison-heading{
    margin: 20px 0;
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .comparison-heading h2{font-size: 1.3rem;}
  .comparison-heading a{font-size: 12px;}
  .comparison-card{
    gap: 15px;
    flex-direction: column;
  }
  .comparison-card-info{
    width: 100%;
    padding: 15px;
  }
  .comparison-img{
    width: 100%;
    height: 150px;
  }

  /* Copyright premium */
  .copyright {
    padding: 20px 15px ;
    text-align: center ;
    margin-bottom: 0;
  }

  .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;
    }
}

@media(max-width:420px){
    .navbar{
        padding-top: 10px;
        padding-bottom: 5px;
    }
    .nav-container h1{
        font-size: 1.3rem;

    }
    .search{
        margin-top: 5px;
    }
    .search input{
        padding: 8px 8px;
    }
    .bar{
        height: 2px;
    }

 /* slider section */
 .slider-btn{
    display:none
}
 .prev-btn{left:5px}
 .next-btn{
    right:5px
}
 .price-note{
    flex-direction:column;
    gap:10px;
    align-items:flex-start
}
}

/* ============ BAHUT CHOTA MOBILE 400px TAK */
@media (max-width: 400px) {
    .breadcrumb{
        margin-top: 82px;
    }
  .product-top{grid-template-columns: 1fr;} /* Gallery aur Info 1 ke neeche 1 */
  .features{grid-template-columns: repeat(4, 1fr);} /* 2x2 */
  .pros-cons{grid-template-columns: 1fr;} /* Pros Cons 1 ke neeche 1 */
}

/* DESKTOP: 3 CARDS */
@media(min-width: 768px){
 .compare-card{
    flex:0 0 calc(33.333% - 11px)
} /* 3 cards */
 .section-title{
    font-size:26px
}
 .card-img img{
    width:200px;
    height:120px
}
 .card-content h4{
    font-size:15px
}
}
/* table section compare prices */
/* ========= TABLET 768px ========= */
@media (max-width: 768px) {
    .comparesection {
        padding: 18px 10px !important;
        margin-left: 0px;
    }

    .compareheader {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .title-area h3 {
        font-size: 1.3rem !important;
    }

    .subtitle {
        font-size: 12px !important;
    }

    .updated {
        font-size: 12px !important;
        padding-top: 0 !important;
    }

    .tag-icon {
        font-size: 30px !important;
    }

    .table-wrapper {
        border-radius: 10px !important;
        width: 100%;
    }

    .price-table {
        min-width: 1410px !important; /* Table scroll hoga */
    }

    .price-table thead th {
        height: 55px !important;
        padding: 10px 8px !important;
        font-size: 16px !important;

        font-weight: 700;
        font-family: system-ui;
    }

    .price-table tbody tr {
        height: 120px !important;
    }

    .price-table td {
        padding: 15px 8px !important;
        font-size: 13px !important;
    }
    
    /* ===== STICKY STORE COLUMN START ===== */
    .price-table th:nth-child(1),
    .price-table td:nth-child(1) {
        position: sticky !important;
        left: 0 !important;
        z-index: 3 !important; 
        width: 160px !important; 
        min-width: 160px !important;
        background: #000000 !important;
        border-right: 3px solid rgba(20, 125, 255, 0.55) !important; 
        text-align: left !important;
    }

    /* Header ko thora aur upar  */
    .price-table thead th:nth-child(1) {
        z-index: 4 !important;
        background: linear-gradient(180deg, #0758cf 0%, #063b9a 100%) !important;
    }

    .price-table tbody tr:hover td:nth-child(1) {
        background: #020d1c !important;
    }
    .store {
        gap: 8px !important;
    }
    .store-logo {
        width: 35px !important;
        height: 35px !important;
    }
    .store-name {
        font-size: 18px !important;
    }
    .badge {
        font-size: 9px !important;
        padding: 3px 5px !important;
    }

    .price {
        font-size: 18px !important;
    }

    .buy-bttn {
        padding: 10px 14px !important;
        font-size: 12px !important;
    }

    .payment-badge {
        min-width: 90px !important;
        padding: 7px 9px !important;
        font-size: 11px !important;
    }

    .badge, .small-badge, .price-badge {
        font-size: 10px !important;
        padding: 4px 7px !important;
    }
    .table-note{
        font-size: 10px;
    }
}

/* ========= MOBILE 480px ========= */
@media (max-width: 420px) {
    .comparesection {
        padding: 15px 0 !important;
    }

    .table-wrapper {
        border-radius: 0 !important;
        width: 100%;
    }

    .price-table {
        min-width: 1250px !important;
    }

    .price-table thead th {
        font-size: 14px !important;
        padding: 8px 6px !important;
        height: 50px !important;
        font-weight: 700;
        font-family: system-ui;
        width: 20px;
    }

    .price-table td {
        padding: 12px 6px !important;
        font-size: 12px !important;
    }

    /* ===== STICKY STORE COLUMN START ===== */
    .price-table th:nth-child(1),
    .price-table td:nth-child(1) {
        position: sticky !important;
        left: 0 !important;
        z-index: 3 !important; 
        width: 160px !important; 
        min-width: 160px !important;
        background: #000000 !important;
        border-right: 3px solid rgba(20, 125, 255, 0.55) !important; 
        text-align: left !important;
    }

    /* Header ko thora aur upar  */
    .price-table thead th:nth-child(1) {
        z-index: 4 !important;
        background: linear-gradient(180deg, #0758cf 0%, #063b9a 100%) !important;
    }

    .price-table tbody tr:hover td:nth-child(1) {
        background: #020d1c !important;
    }
    .store {
        gap: 8px !important;
    }
    .store-logo {
        width: 35px !important;
        height: 35px !important;
    }
    .store-name {
        font-size: 18px !important;
    }
    .badge {
        font-size: 9px !important;
        padding: 3px 5px !important;
    }
    .price {
        font-size: 16px !important;
    }

    .buy-bttn {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }

    .go-to {
        font-size: 11px !important;
    }

    .star {
        font-size: 18px !important;
    }
    .table-note{
        font-size: 10px;
    }
}