/*
Theme Name: NextLife Hub
Author: Somnath
Version: 1.0
*/

/* ================= RESET ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#0F0F0F;
  font-family:Arial, sans-serif;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

/* ================= CONTAINER ================= */

.nlh-container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

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

.nlh-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;

  background:rgba(15,15,15,0.7);
  backdrop-filter:blur(10px);

  border-bottom:1px solid rgba(255,255,255,0.05);

  transition:0.3s ease;
}

.nlh-header.scrolled{
  background:#0F0F0F;
  box-shadow:0 5px 20px rgba(0,0,0,0.4);
}

.nlh-header .nlh-container{
  height:75px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */

.nlh-logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.nlh-logo img{
  width:34px;
  height:34px;
  border-radius:50%;
  border:2px solid #D4AF37;
}

.nlh-logo span{
  color:#fff;
  font-size:17px;
  font-weight:600;
}

/* NAV */

.nlh-nav{
  display:flex;
  gap:28px;
}

.nlh-nav a{
  color:#bbb;
  font-size:14px;
  position:relative;
  transition:0.3s;
}

.nlh-nav a:hover{
  color:#fff;
}

.nlh-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:#D4AF37;
  transition:0.3s;
}

.nlh-nav a:hover::after{
  width:100%;
}

/* RIGHT */

.nlh-right{
  display:flex;
  align-items:center;
  gap:12px;
}

/* BUTTON */

.nlh-cta{
  background:linear-gradient(135deg,#D4AF37,#f1d57a);
  color:#000;
  padding:10px 20px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;

  transition:0.3s;
}

.nlh-cta:hover{
  transform:translateY(-2px);
}

/* MOBILE */

.nlh-toggle{
  display:none;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

.nlh-mobile{
  display:none;
  flex-direction:column;

  background:#111;

  position:absolute;
  top:75px;
  left:0;
  width:100%;

  padding:20px;
}

.nlh-mobile.active{
  display:flex;
}

.nlh-mobile a{
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid #222;
}

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

.nlh-hero{
  min-height:100vh;

  display:flex;
  align-items:center;

  padding:120px 20px 60px;

  background:
  radial-gradient(circle at top right,
  rgba(212,175,55,0.08),
  transparent 30%),

  linear-gradient(135deg,#0F0F0F,#1c1c1c);
}

.nlh-hero-container{
  width:100%;
  max-width:1200px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.nlh-hero-text{
  max-width:550px;
}

.nlh-hero-text h1{
  color:#fff;
  font-size:58px;
  line-height:1.2;
  margin-bottom:20px;
}

.nlh-hero-text p{
  color:#aaa;
  font-size:18px;
  line-height:1.7;
  margin-bottom:30px;
}

.nlh-hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
}

.btn-primary{
  background:#D4AF37;
  color:#000;

  padding:14px 30px;
  border-radius:30px;

  font-weight:600;
}

.btn-secondary{
  border:1px solid #D4AF37;
  color:#D4AF37;

  padding:14px 30px;
  border-radius:30px;
}

.nlh-trust-line{
  color:#888;
  font-size:14px;
}

.nlh-hero-image img{
  width:420px;
}

/* ================= CATEGORY SECTION ================= */

.nlh-categories{
  background:#111;
  padding:100px 20px;
}

.nlh-section-title{
  color:#fff;
  text-align:center;
  font-size:38px;
  margin-bottom:60px;
}

.nlh-category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.nlh-category-card{
  background:linear-gradient(145deg,#1b1b1b,#111);

  border-radius:20px;
  overflow:hidden;

  transition:0.4s ease;

  border:1px solid rgba(255,255,255,0.04);
}

.nlh-category-card:hover{
  transform:translateY(-10px);
}

.nlh-category-card img{
  width:100%;
  height:220px;
  object-fit:cover;

  transition:0.4s;
}

.nlh-category-card:hover img{
  transform:scale(1.08);
}

.nlh-category-card-content{
  padding:25px;
}

.nlh-category-card h3{
  color:#fff;
  margin-bottom:10px;
}

.nlh-category-card p{
  color:#aaa;
  line-height:1.6;
  margin-bottom:20px;
}

.cat-btn{
  display:inline-block;

  background:#D4AF37;
  color:#000;

  padding:10px 20px;
  border-radius:30px;

  font-size:14px;
  font-weight:600;
}

/* ================= REFURBISHED SHOP ================= */

.nlh-refurb-hero{
  padding:160px 20px 100px;

  background:
  radial-gradient(circle at top right,
  rgba(212,175,55,0.08),
  transparent 30%),

  #0F0F0F;
}

.refurb-heading{
  max-width:700px;
}

.mini-tag{
  display:inline-block;

  color:#D4AF37;
  border:1px solid rgba(212,175,55,0.3);

  padding:6px 14px;
  border-radius:30px;

  margin-bottom:20px;
  font-size:13px;
}

.refurb-heading h1{
  color:#fff;
  font-size:64px;
  line-height:1.1;
  margin-bottom:20px;
}

.refurb-heading h1 span{
  color:#D4AF37;
}

.refurb-heading p{
  color:#aaa;
  font-size:18px;
  line-height:1.7;
}

/* PRODUCTS */

.nlh-refurb-products{
  background:#0F0F0F;
  padding:40px 20px 100px;
}

.nlh-product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* CARD */

.premium-card{
  position:relative;

  background:linear-gradient(145deg,#181818,#111);

  border-radius:22px;
  overflow:hidden;

  border:1px solid rgba(255,255,255,0.05);

  transition:0.4s ease;
}

.premium-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

/* BADGE */

.card-badge{
  position:absolute;
  top:15px;
  left:15px;

  background:#00ff9c;
  color:#000;

  padding:6px 12px;
  border-radius:30px;

  font-size:12px;
  font-weight:600;

  z-index:2;
}

/* IMAGE */

.card-image{
  background:#fff;
  padding:25px;
  overflow:hidden;
}

.card-image img{
  width:100%;
  height:240px;
  object-fit:contain;

  transition:0.4s ease;
}

.premium-card:hover img{
  transform:scale(1.08);
}

/* CONTENT */

.card-content{
  padding:24px;
}

.card-content h3{
  color:#fff;
  font-size:18px;
  line-height:1.5;
  margin-bottom:10px;
}

.card-price{
  color:#D4AF37;
  font-size:20px;
  margin-bottom:10px;
}

.card-meta{
  color:#888;
  font-size:14px;
  margin-bottom:18px;
}

.card-buttons{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.view-btn{
  background:linear-gradient(135deg,#D4AF37,#f1d57a);

  color:#000;
  text-align:center;

  padding:12px;
  border-radius:14px;

  font-weight:600;
}

.video-btn-small{
  border:1px solid rgba(212,175,55,0.3);

  color:#D4AF37;
  text-align:center;

  padding:10px;
  border-radius:14px;
}

/* ================= PDP ================= */

.nlh-pdp{
  background:#0F0F0F;
  padding:130px 20px;
}

.nlh-pdp-container{
  max-width:1200px;
  margin:auto;

  display:flex;
  gap:60px;
  align-items:flex-start;
}

/* LEFT */

.nlh-pdp-image{
  flex:1;
  max-width:480px;
}

.main-image{
  overflow:hidden;
  border-radius:20px;
  background:#fff;
}

.main-image img{
  width:100%;
  transition:0.4s ease;
}

.main-image:hover img{
  transform:scale(1.08);
}

.thumb-images{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.thumb{
  width:70px;
  height:70px;

  object-fit:cover;

  border-radius:10px;
  cursor:pointer;

  border:2px solid transparent;
}

.thumb:hover{
  border-color:#D4AF37;
}

/* RIGHT */

.nlh-pdp-info{
  flex:1;
  max-width:520px;

  display:flex;
  flex-direction:column;
  gap:14px;
}

.nlh-pdp-info h1{
  color:#fff;
  font-size:36px;
  line-height:1.3;
}

.price{
  color:#D4AF37;
  font-size:28px;
}

.condition{
  width:fit-content;

  background:#00ff9c;
  color:#000;

  padding:6px 14px;
  border-radius:30px;

  font-size:13px;
  font-weight:600;
}

.device-code,
.stock{
  color:#aaa;
  font-size:14px;
}

.nlh-features ul{
  list-style:none;
}

.nlh-features li{
  color:#ccc;
  margin-bottom:10px;
}

.description{
  color:#aaa;
  line-height:1.8;
}

.pdp-buttons{
  display:flex;
  gap:12px;
  margin-top:10px;
}

.video-btn{
  border:1px solid #D4AF37;
  color:#D4AF37;

  padding:12px 20px;
  border-radius:30px;
}

.buy-btn{
  background:#D4AF37;
  color:#000;

  padding:12px 20px;
  border-radius:30px;

  font-weight:600;
}

/* CART */

.woocommerce div.product form.cart{
  display:flex;
  gap:10px;
}

.woocommerce div.product form.cart .button{
  background:#D4AF37;
  color:#000;
  border-radius:30px;
}

/* TRUST */

.nlh-trust{
  color:#888;
  font-size:14px;
  line-height:1.8;
}

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

.nlh-footer{
  background:#0B0B0B;
  padding:70px 20px 20px;
}

.nlh-footer-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
}

.nlh-footer h2,
.nlh-footer h4{
  color:#fff;
  margin-bottom:20px;
}

.nlh-footer p,
.nlh-footer a{
  color:#888;
  line-height:2;
}

.nlh-footer a:hover{
  color:#D4AF37;
}

.nlh-footer-bottom{
  border-top:1px solid #222;

  margin-top:40px;
  padding-top:20px;

  text-align:center;
  color:#666;
}

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

@media(max-width:992px){

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

  .nlh-pdp-container,
  .nlh-hero-container{
    flex-direction:column;
  }

}

@media(max-width:768px){

  .nlh-nav{
    display:none;
  }

  .nlh-toggle{
    display:block;
  }

  .nlh-category-grid,
  .nlh-product-grid,
  .nlh-footer-container{
    grid-template-columns:1fr;
  }

  .refurb-heading h1,
  .nlh-hero-text h1{
    font-size:42px;
  }

  .nlh-pdp-info h1{
    font-size:30px;
  }

  .pdp-buttons{
    flex-direction:column;
  }

}
/* MAIN IMAGE */

.main-image{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  padding:20px;
}

.main-image img{
  width:100%;
  transition:opacity 0.3s ease,
             transform 0.4s ease;
}

.main-image:hover img{
  transform:scale(1.05);
}

/* THUMBNAILS */

.thumb-images{
  display:flex;
  gap:12px;
  margin-top:15px;
}

.thumb{
  width:75px;
  height:75px;

  object-fit:cover;

  border-radius:12px;

  cursor:pointer;

  border:2px solid transparent;

  transition:0.3s ease;
}

.thumb:hover{
  transform:translateY(-4px);
  border-color:#D4AF37;
}

/* ACTIVE THUMB */

.active-thumb{
  border-color:#D4AF37;
  box-shadow:0 0 10px rgba(212,175,55,0.5);
}
/* ================= MOBILE FRONT PAGE FIX ================= */

@media(max-width:768px){

  /* HERO */

  .nlh-hero{
    padding:120px 20px 70px;
  }

  .nlh-hero-container{
    flex-direction:column-reverse;
    text-align:center;
    gap:40px;
  }

  .nlh-hero-text{
    max-width:100%;
  }

  .hero-mini-tag{
    margin:auto;
  }

  .nlh-hero-text h1{
    font-size:40px;
    line-height:1.2;
  }

  .nlh-hero-text p{
    font-size:16px;
    line-height:1.7;
  }

  .nlh-hero-buttons{
    flex-direction:column;
    width:100%;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    text-align:center;
  }

  .nlh-hero-image img{
    width:260px;
    margin:auto;
  }

  .mobile-break{
    display:block;
    margin-bottom:6px;
  }

  /* CATEGORY */

  .nlh-categories{
    padding:70px 20px;
  }

  .nlh-section-title{
    font-size:32px;
    margin-bottom:40px;
  }

  .nlh-category-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .nlh-category-card img{
    height:220px;
  }

  /* PRODUCT GRID */

  .nlh-product-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .premium-card{
    border-radius:18px;
  }

  .card-image img{
    height:240px;
  }

  .card-content{
    padding:20px;
  }

  .card-content h3{
    font-size:17px;
  }

}

/* ================= LOGO LINK FIX ================= */

.nlh-logo{
  text-decoration:none;
}

/* ================= MOBILE MENU FIX ================= */

.nlh-mobile{
  display:none;
}

.nlh-mobile.active{
  display:flex;
}

@media(max-width:768px){

  .nlh-nav{
    display:none;
  }

  .nlh-toggle{
    display:block;
  }

  .nlh-mobile{
    flex-direction:column;

    background:#111;

    position:absolute;

    top:75px;
    left:0;

    width:100%;

    padding:20px;

    border-top:1px solid #222;

    z-index:999;
  }

  .nlh-mobile a{
    color:#fff;

    padding:14px 0;

    border-bottom:1px solid #222;

    font-size:15px;
  }

}
/* ================= CTA ICON ================= */

.nlh-cta{
  display:flex;
  align-items:center;
  gap:8px;
}

.nlh-cta svg{
  width:18px;
  height:18px;
}
/* ================= SOCIAL ICONS ================= */

.nlh-socials{
  display:flex;
  gap:14px;
  margin-top:15px;
}

.nlh-socials a{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#151515;

  border:1px solid rgba(255,255,255,0.06);

  border-radius:50%;

  transition:0.3s ease;
}

.nlh-socials a:hover{
  transform:translateY(-4px);
  border-color:#D4AF37;
  box-shadow:0 10px 20px rgba(0,0,0,0.4);
}

.nlh-socials svg{
  width:18px;
  height:18px;
  fill:#D4AF37;
}
/* ================= MOBILE PDP FIX ================= */

@media(max-width:768px){

  .nlh-pdp{
    padding:110px 15px 120px;
  }

  .nlh-pdp-container{
    flex-direction:column;
    gap:35px;
  }

  /* IMAGE */

  .nlh-pdp-image{
    width:100%;
    max-width:100%;
  }

  .main-image{
    padding:15px;
    border-radius:18px;
  }

  .main-image img{
    max-height:320px;
    object-fit:contain;
  }

  /* THUMBS */

  .thumb-images{
    overflow-x:auto;
    padding-bottom:5px;

    scrollbar-width:none;
  }

  .thumb-images::-webkit-scrollbar{
    display:none;
  }

  .thumb{
    min-width:70px;
    min-height:70px;
  }

  /* INFO */

  .nlh-pdp-info{
    width:100%;
    max-width:100%;
  }

  .nlh-pdp-info h1{
    font-size:28px;
    line-height:1.4;
  }

  .price{
    font-size:30px;
  }

  .description{
    font-size:15px;
    line-height:1.8;
  }

  /* CART */

  .woocommerce div.product form.cart{
    flex-direction:column;
    align-items:stretch;
  }

  .woocommerce div.product form.cart .button{
    width:100%;
  }

  /* BUTTONS */

  .pdp-buttons{
    flex-direction:column;
  }

  .video-btn,
  .buy-btn{
    width:100%;
    text-align:center;
  }

  /* TRUST */

  .nlh-trust{
    line-height:2;
  }

}

/* ================= STICKY MOBILE BUY BAR ================= */

.nlh-mobile-buybar{
  display:none;
}

@media(max-width:768px){

  .nlh-mobile-buybar{

    display:flex;

    position:fixed;
    bottom:0;
    left:0;

    width:100%;

    background:#111;

    padding:12px;

    gap:10px;

    z-index:9999;

    border-top:1px solid #222;
  }

  .mobile-video-btn{
    flex:1;

    border:1px solid #D4AF37;

    color:#D4AF37;

    padding:14px;
    border-radius:14px;

    text-align:center;
  }

  .mobile-buy-btn{
    flex:2;

    background:#D4AF37;
    color:#000;

    padding:14px;
    border-radius:14px;

    text-align:center;

    font-weight:600;
  }

}
/* ================= TECHNICIAN HUB ================= */

.nlh-techhub{
  padding:140px 20px 100px;
  background:#0F0F0F;
  min-height:100vh;
}

.techhub-heading{
  text-align:center;
  margin-bottom:40px;
}

.techhub-heading h1{
  color:#fff;
  font-size:52px;
  margin-bottom:15px;
}

.techhub-heading p{
  color:#aaa;
  font-size:18px;
}

#compatSearch{
  width:100%;
  max-width:700px;

  display:block;
  margin:0 auto 50px;

  background:#151515;
  color:#fff;

  border:none;
  outline:none;

  padding:18px 24px;

  border-radius:18px;

  font-size:16px;
}

.compat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.compat-card{
  background:#151515;
  border-radius:20px;
  overflow:hidden;
  padding:25px;

  border:1px solid rgba(255,255,255,0.05);
}

.compat-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:20px;
}

.compat-card h3{
  color:#fff;
  margin-bottom:15px;
}

.compat-meta,
.compat-models{
  color:#aaa;
  margin-bottom:15px;
  line-height:1.8;
}

.compat-btn{
  display:inline-block;

  background:#D4AF37;
  color:#000;

  padding:10px 20px;
  border-radius:14px;

  font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

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

  .techhub-heading h1{
    font-size:38px;
  }

}
/* ================= SINGLE COMPATIBILITY ================= */

.nlh-compat-single{
  background:#0F0F0F;
  min-height:100vh;
  padding:140px 20px 100px;
}

.compat-single-card{
  display:flex;
  gap:60px;
  align-items:flex-start;

  background:#151515;

  border-radius:24px;

  padding:40px;

  border:1px solid rgba(255,255,255,0.05);
}

.compat-single-image{
  flex:1;
}

.compat-single-image img{
  width:100%;
  border-radius:20px;
  background:#fff;
  padding:20px;
}

.compat-single-content{
  flex:1;
}

.compat-badge{
  display:inline-block;

  background:#D4AF37;
  color:#000;

  padding:8px 14px;
  border-radius:30px;

  font-size:13px;
  font-weight:600;

  margin-bottom:20px;
}

.compat-single-content h1{
  color:#fff;
  font-size:42px;
  margin-bottom:25px;
}

.compat-meta{
  color:#aaa;
  margin-bottom:12px;
  font-size:16px;
}

.compat-model-list{
  margin-top:30px;
}

.compat-model-list h3{
  color:#fff;
  margin-bottom:15px;
}

.compat-model-list pre{
  color:#ccc;
  line-height:2;
  white-space:pre-wrap;

  background:#101010;
  padding:20px;
  border-radius:16px;
}

.compat-description{
  margin-top:30px;
  color:#aaa;
  line-height:1.9;
}

.compat-whatsapp-btn{
  display:inline-block;

  margin-top:35px;

  background:#D4AF37;
  color:#000;

  padding:14px 26px;
  border-radius:16px;

  font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

  .compat-single-card{
    flex-direction:column;
    padding:25px;
    gap:30px;
  }

  .compat-single-content h1{
    font-size:30px;
    line-height:1.3;
  }

}
/* ================= COMPATIBILITY CLEAN UI ================= */

.compat-card{
  background:#151515;

  border-radius:22px;

  padding:28px;

  border:1px solid rgba(255,255,255,0.05);

  transition:0.3s ease;
}

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

.compat-type{
  display:inline-block;

  background:#D4AF37;
  color:#000;

  padding:6px 12px;

  border-radius:30px;

  font-size:12px;
  font-weight:600;

  margin-bottom:18px;
}

.compat-card h3{
  color:#fff;
  line-height:1.5;
  margin-bottom:18px;
}

.compat-models pre{
  white-space:pre-wrap;
  line-height:1.9;
  color:#aaa;
}

.compat-single-card{
  background:#151515;

  border-radius:24px;

  padding:40px;

  max-width:900px;

  margin:auto;

  border:1px solid rgba(255,255,255,0.05);
}

@media(max-width:768px){

  .compat-single-card{
    padding:25px;
  }

}
/* ================= TECHNICIAN HUB HOME ================= */

.nlh-techhub-home{
  background:#111;
  padding:100px 20px;
}

.techhub-home-card{
  display:flex;
  gap:60px;
  align-items:center;
  justify-content:space-between;

  background:
  linear-gradient(
  145deg,
  #181818,
  #111
  );

  border-radius:30px;

  padding:60px;

  border:1px solid rgba(255,255,255,0.05);

  overflow:hidden;

  position:relative;
}

/* GLOW EFFECT */

.techhub-home-card::before{
  content:"";

  position:absolute;

  top:-120px;
  right:-120px;

  width:280px;
  height:280px;

  background:
  radial-gradient(
  circle,
  rgba(212,175,55,0.15),
  transparent 70%
  );

  pointer-events:none;
}

/* LEFT */

.techhub-home-text{
  flex:1;
  max-width:560px;
  position:relative;
  z-index:2;
}

.techhub-mini{
  display:inline-block;

  color:#D4AF37;

  border:1px solid rgba(212,175,55,0.25);

  padding:8px 14px;

  border-radius:30px;

  font-size:12px;
  font-weight:600;

  margin-bottom:22px;

  letter-spacing:1px;
}

.techhub-home-text h2{
  color:#fff;

  font-size:52px;
  line-height:1.15;

  margin-bottom:22px;
}

.techhub-home-text p{
  color:#aaa;

  font-size:18px;
  line-height:1.9;

  margin-bottom:35px;
}

/* FEATURES */

.techhub-features{
  display:flex;
  flex-wrap:wrap;
  gap:14px;

  margin-bottom:38px;
}

.techhub-features span{
  background:#151515;

  color:#ccc;

  padding:12px 16px;

  border-radius:30px;

  font-size:14px;

  border:1px solid rgba(255,255,255,0.05);
}

/* BUTTON */

.techhub-btn{
  display:inline-block;

  background:linear-gradient(
  135deg,
  #D4AF37,
  #f1d57a
  );

  color:#000;

  padding:16px 30px;

  border-radius:18px;

  font-weight:700;

  transition:0.3s ease;
}

.techhub-btn:hover{
  transform:translateY(-4px);

  box-shadow:
  0 15px 30px rgba(0,0,0,0.4);
}

/* RIGHT */

.techhub-home-search{
  flex:1;
  max-width:430px;

  position:relative;
  z-index:2;
}

/* SEARCH */

.fake-search-box{
  background:#0F0F0F;

  border-radius:18px;

  padding:20px 24px;

  color:#666;

  margin-bottom:24px;

  border:1px solid rgba(255,255,255,0.05);

  font-size:15px;
}

/* PREVIEW CARD */

.search-preview-card{
  background:#0F0F0F;

  border-radius:24px;

  padding:30px;

  border:1px solid rgba(255,255,255,0.05);
}

.preview-type{
  display:inline-block;

  background:#D4AF37;
  color:#000;

  padding:6px 12px;

  border-radius:30px;

  font-size:12px;
  font-weight:700;

  margin-bottom:20px;
}

.search-preview-card h4{
  color:#fff;

  font-size:24px;

  margin-bottom:18px;
}

.search-preview-card p{
  color:#aaa;
  margin-bottom:12px;
}

.search-preview-card ul{
  padding-left:18px;
}

.search-preview-card li{
  color:#ccc;
  margin-bottom:10px;
  line-height:1.7;
}

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

@media(max-width:768px){

  .nlh-techhub-home{
    padding:70px 20px;
  }

  .techhub-home-card{
    flex-direction:column;

    padding:30px;

    gap:45px;

    border-radius:24px;
  }

  .techhub-home-text{
    max-width:100%;
  }

  .techhub-home-text h2{
    font-size:36px;
    line-height:1.25;
  }

  .techhub-home-text p{
    font-size:16px;
  }

  .techhub-features{
    gap:10px;
  }

  .techhub-features span{
    font-size:13px;
    padding:10px 14px;
  }

  .techhub-btn{
    width:100%;
    text-align:center;
  }

  .techhub-home-search{
    width:100%;
    max-width:100%;
  }

  .search-preview-card{
    padding:24px;
  }

  .search-preview-card h4{
    font-size:22px;
  }

}
/* ================= HERO TRUST CARDS ================= */

.nlh-trust-cards{
  display:flex;
  gap:16px;

  margin-top:35px;

  flex-wrap:wrap;
}

.trust-card{
  flex:1;
  min-width:180px;

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

  background:
  rgba(255,255,255,0.03);

  border:1px solid rgba(255,255,255,0.05);

  padding:18px;

  border-radius:18px;

  transition:0.3s ease;
}

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

  border-color:
  rgba(212,175,55,0.2);
}

.trust-icon{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  background:#D4AF37;

  color:#000;

  font-size:18px;
  font-weight:700;

  flex-shrink:0;
}

.trust-content h4{
  color:#fff;

  font-size:15px;

  margin-bottom:6px;
}

.trust-content p{
  color:#888;

  font-size:13px;
  line-height:1.6;
}

/* MOBILE */

@media(max-width:768px){

  .nlh-trust-cards{
    flex-direction:column;
  }

  .trust-card{
    width:100%;
  }

/* ==================================================
   NEXTLIFE HUB — CLEAN WOOCOMMERCE
================================================== */

.nlh-woo-page{
  background:#0F0F0F;
  min-height:100vh;
  padding:130px 0 80px;
}

.nlh-woo-container{
  width:100%;
  max-width:1250px;
  margin:auto;
  padding:0 20px;
}

/* GENERAL */

.woocommerce{
  color:#fff;
}

.woocommerce-page{
  background:#0F0F0F;
}

/* REMOVE FLOAT ISSUES */

.woocommerce::before,
.woocommerce::after{
  display:none !important;
}

/* TABLE */

.woocommerce table.shop_table{
  width:100%;
  background:#151515;
  border:none !important;
  border-radius:22px;
  overflow:hidden;
}

/* TABLE HEAD */

.woocommerce table.shop_table th{
  background:#1d1d1d;
  color:#fff;
  padding:20px;
  border:none;
}

/* TABLE BODY */

.woocommerce table.shop_table td{
  color:#ccc;
  padding:20px;
  border-color:#222;
}

/* PRODUCT IMAGE */

.woocommerce-cart table.cart img{
  width:80px;
  background:#fff;
  padding:5px;
  border-radius:12px;
}

/* LINKS */

.woocommerce a{
  color:#D4AF37;
}

/* REMOVE BUTTON */

.woocommerce a.remove{
  color:#ff4d4d !important;
}

/* QUANTITY */

.quantity input{
  background:#111;
  color:#fff;
  border:1px solid #333;
  border-radius:12px;
  height:46px;
  width:70px;
}

/* BUTTONS */

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.checkout-button{

  background:
  linear-gradient(
  135deg,
  #D4AF37,
  #f1d57a
  ) !important;

  color:#000 !important;

  border:none !important;

  border-radius:14px !important;

  padding:14px 24px !important;

  font-weight:700 !important;

  transition:0.3s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover{
  transform:translateY(-3px);
}

/* COUPON */

.coupon{
  display:flex;
  gap:10px;
}

.coupon input{
  background:#111;
  border:1px solid #333;
  color:#fff;
  border-radius:12px;
  padding:12px;
}

/* TOTALS */

.cart-collaterals{
  margin-top:35px;
}

.cart-collaterals .cart_totals{
  background:#151515;
  border-radius:22px;
  padding:30px;
  border:1px solid rgba(255,255,255,0.05);
}

/* CHECKOUT */

.woocommerce-checkout form.checkout{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:30px;
}

/* CHECKOUT BOXES */

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review{
  background:#151515;
  border-radius:22px;
  padding:30px;
  border:1px solid rgba(255,255,255,0.05);
}

/* INPUTS */

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select{

  background:#111;
  border:1px solid #333;
  color:#fff;
  border-radius:14px;
  padding:14px;
}

/* SELECT2 */

.select2-container--default .select2-selection--single{
  background:#111 !important;
  border:1px solid #333 !important;
  border-radius:14px !important;
  height:50px !important;
}

/* PAYMENT */

.woocommerce-checkout #payment{
  background:#1a1a1a;
  border-radius:18px;
}

/* NOTICES */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
  background:#151515;
  color:#fff;
  border-top:3px solid #D4AF37;
  border-radius:14px;
  padding:18px;
  margin-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){

  .nlh-woo-page{
    padding:110px 0 60px;
  }

  .nlh-woo-container{
    padding:0 15px;
  }

  .woocommerce table.shop_table{
    display:block;
    overflow-x:auto;
  }

  .coupon{
    flex-direction:column;
  }

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

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review{
    padding:20px;
  }

  .woocommerce button.button,
  .woocommerce a.button,
  .woocommerce input.button{
    width:100%;
    text-align:center;
  }

}
	/* FIX CART / CHECKOUT HIDING UNDER HEADER */

.woocommerce-page .site-main,
.woocommerce-cart .site-main,
.woocommerce-checkout .site-main,
.woocommerce-account .site-main{
  padding-top:120px;
}

/* MOBILE */

@media(max-width:768px){

  .woocommerce-page .site-main,
  .woocommerce-cart .site-main,
  .woocommerce-checkout .site-main,
  .woocommerce-account .site-main{
    padding-top:100px;
  }

}
	/* ==================================================
   WOOCOMMERCE PAGE FIX
================================================== */

.woocommerce-page{
  background:#0F0F0F !important;
  color:#fff !important;
}

/* MAIN CONTENT SPACING */

.woocommerce-page #primary,
.woocommerce-page .site-main,
.woocommerce-page main{
  padding-top:140px !important;
  padding-left:20px;
  padding-right:20px;
  padding-bottom:80px;
}

/* TEXT COLORS */

.woocommerce,
.woocommerce p,
.woocommerce td,
.woocommerce th,
.woocommerce label,
.woocommerce span,
.woocommerce div,
.woocommerce strong{
  color:#fff !important;
}

/* LINKS */

.woocommerce a{
  color:#D4AF37 !important;
}

/* TABLE */

.woocommerce table.shop_table{
  background:#151515 !important;
  border:none !important;
  border-radius:20px !important;
  overflow:hidden;
}

/* TABLE HEAD */

.woocommerce table.shop_table th{
  background:#1d1d1d !important;
  color:#fff !important;
}

/* TABLE BODY */

.woocommerce table.shop_table td{
  background:#151515 !important;
  color:#ddd !important;
  border-color:#222 !important;
}

/* CART TOTALS */

.cart-collaterals .cart_totals{
  background:#151515 !important;
  padding:30px !important;
  border-radius:20px !important;
}

/* CHECKOUT BOX */

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review{
  background:#151515 !important;
  padding:30px !important;
  border-radius:20px !important;
}

/* INPUTS */

.woocommerce input,
.woocommerce textarea,
.woocommerce select{
  background:#111 !important;
  color:#fff !important;
  border:1px solid #333 !important;
}

/* MOBILE */

@media(max-width:768px){

  .woocommerce-page #primary,
  .woocommerce-page .site-main,
  .woocommerce-page main{
    padding-top:110px !important;
    padding-left:15px;
    padding-right:15px;
  }

}
	#compatSearch{
  position:sticky;
  top:90px;
  z-index:50;
}
	/* ================= NO RESULTS MESSAGE ================= */

.no-results-message{

  display:none;

  background:#151515;

  border:1px solid rgba(255,255,255,0.05);

  color:#aaa;

  padding:30px;

  border-radius:22px;

  margin-bottom:35px;

  text-align:center;

  line-height:1.9;

  font-size:16px;
}
	/* ================= TECH HUB SEARCH ================= */

#compatSearch{
  background:#151515;
  color:#fff !important;

  border:1px solid rgba(255,255,255,0.08);

  border-radius:18px;

  padding:18px 22px;

  font-size:16px;

  outline:none;
}

/* PLACEHOLDER */

#compatSearch::placeholder{
  color:#777;
}