

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      scroll-behavior:smooth;
    }

    :root{
      --bg:#030303;
      --card:#0a0a0a;
      --green:#8DFF00;
      --green2:#5aff00;
      --text:#ffffff;
      --muted:#8f8f8f;
      --border:rgba(141,255,0,0.15);
    }

    body{
      font-family:'Inter',sans-serif !important;
      background:var(--bg) !important;
      color:var(--text) !important;
      overflow-x:hidden;
    }

    body::-webkit-scrollbar{
      width:10px;
    }

    body::-webkit-scrollbar-thumb{
      background:var(--green);
      border-radius:10px;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      width:100%;
      display:block;
      object-fit:cover;
    }

    .container{
      width:90%;
      max-width:1400px;
      margin:auto;
    }

    /* Animated Background */

    .bg-grid{
      position:fixed;
      inset:0;
      background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size:50px 50px;
      z-index:-2;
      mask-image:radial-gradient(circle at center, black 30%, transparent 100%);
    }

    .green-blur{
      position:fixed;
      width:600px;
      height:600px;
      background:radial-gradient(circle, rgba(141,255,0,0.22), transparent 70%);
      top:-150px;
      left:-150px;
      filter:blur(40px);
      z-index:-1;
      animation:floatGlow 10s infinite alternate ease-in-out;
    }

    @keyframes floatGlow{
      0%{
        transform:translate(0,0) scale(1);
      }
      100%{
        transform:translate(100px,60px) scale(1.2);
      }
    }

    a{
      text-decoration: none !important;
    }
    /* Navbar */

    nav{
      position:fixed;
      top:0;
      width:100%;
      z-index:1000;
      backdrop-filter:blur(18px);
      background:rgba(0,0,0,0.5);
      border-bottom:1px solid rgba(255,255,255,0.05);
    }

    .nav-wrapper{
      height:80px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    .logo{
      background:white;
      color:#8DFF00;
      padding:10px 18px;
      border-radius:14px;
      font-weight:900;
      letter-spacing:1px;
      font-size:1.1rem;
      transition:0.4s;
    }

    .logo:hover{
      transform:scale(1.05);
      box-shadow:0 0 30px rgba(141,255,0,0.4);
    }

    .nav-links{
      display:flex;
      gap:40px;
    }

    .nav-links a{
      color:#d8d8d8;
      position:relative;
      transition:0.3s;
      font-size:15px;
    }

    .nav-links a:hover,
    .nav-links a.active{
      color:var(--green);
    }

    .nav-links a::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-8px;
      width:0%;
      height:2px;
      background:var(--green);
      transition:0.4s;
    }

    .nav-links a:hover::after{
      width:100%;
    }

  

    .cart-btn{
      padding:12px 18px;
      border-radius:50px;
      border:1px solid rgba(255,255,255,0.1);
      background:#0f0f0f;
      display:flex;
      align-items:center;
      gap:10px;
      transition:0.4s;
    }

    .cart-btn:hover{
      border-color:var(--green);
      transform:translateY(-3px);
      box-shadow:0 0 20px rgba(141,255,0,0.3);
    }

    /* Hero */

    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      padding-top:120px;
      position:relative;
    }

    .hero-content{
      display:grid;
      grid-template-columns:1.1fr 1fr;
      gap:80px;
      align-items:center;
    }

    .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 18px;
      border:1px solid rgba(141,255,0,0.2);
      border-radius:50px;
      color:var(--green);
      font-size:13px;
      margin-bottom:30px;
      background:rgba(141,255,0,0.06);
      box-shadow:0 0 25px rgba(141,255,0,0.08);
    }

    .hero h1{
      font-size:5.7rem;
      line-height:1;
      margin-bottom:25px;
      font-weight:900;
    }

    .hero h1 span{
      color:var(--green);
      text-shadow:0 0 30px rgba(141,255,0,0.6);
    }

    .hero p{
      color:var(--muted);
      max-width:600px;
      line-height:1.8;
      font-size:18px;
      margin-bottom:40px;
    }

    .hero-btns{
      display:flex;
      gap:20px;
      margin-bottom:60px;
    }

    .primary-btn,
    .secondary-btn{
      padding:18px 32px;
      border-radius:60px;
      font-weight:700;
      transition:0.4s;
      display:flex;
      align-items:center;
      gap:12px;
      cursor:pointer;
      width: 210px;
      text-decoration: none;
      z-index: 999;
    }

    .primary-btn{
      background:var(--green);
      color:black;
      box-shadow:0 0 30px rgba(141,255,0,0.3);
      
    }

    .primary-btn:hover{
      transform:translateY(-6px) scale(1.03);
      box-shadow:0 0 50px rgba(141,255,0,0.5);
    }

    .secondary-btn{
      border:1px solid rgba(255,255,255,0.1);
      color:white;
      background:#0d0d0d;
    }

    .secondary-btn:hover{
      border-color:var(--green);
      transform:translateY(-6px);
    }

    .stats{
      display:flex;
      width: 100%;
      justify-content: space-around;
    }

    .stat h2{
      color:var(--green);
      font-size:2rem;
      margin-bottom:8px;
    }

    .stat p{
      font-size:13px;
      margin:0;
      color:#888;
      letter-spacing:1px;
    }

    /* Hero Image */

    .hero-image-wrap{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .hero-glow{
      position:absolute;
      width:550px;
      height:550px;
      background:radial-gradient(circle, rgba(141,255,0,0.55), transparent 70%);
      filter:blur(30px);
      animation:pulse 4s infinite ease-in-out;
    }

    @keyframes pulse{
      0%,100%{
        transform:scale(1);
      }
      50%{
        transform:scale(1.15);
      }
    }

    .hero-image{
      position:relative;
      width:100%;
      max-width:650px;
      animation:floatImage 6s infinite ease-in-out;
      z-index:2;
    }

    @keyframes floatImage{
      0%,100%{
        transform:translateY(0px);
      }
      50%{
        transform:translateY(-18px);
      }
    }

    /* Marquee */

    .marquee{
      overflow:hidden;
      white-space:nowrap;
      border-top:1px solid rgba(255,255,255,0.06);
      border-bottom:1px solid rgba(255,255,255,0.06);
      padding:22px 0;
      margin-top:40px;
      background:#050505;
    }

    .marquee-content{
      display:inline-block;
      animation:marquee 18s linear infinite;
      color:#cfcfcf;
      font-size:14px;
      letter-spacing:3px;
    }

    @keyframes marquee{
      from{
        transform:translateX(0);
      }
      to{
        transform:translateX(-50%);
      }
    }

    .marquee span{
      margin:0 50px;
      color:var(--green);
    }

    /* Sections */

    section{
      padding:70px 0;
    }

    .section-top{
      display:flex;
      justify-content:space-between;
      align-items:end;
      margin-bottom:60px;
    }

    .section-top h2{
      font-size:3.2rem;
      line-height:1.1;
    }

    .section-top p{
      color:var(--muted);
      margin-top:15px;
    }

    .section-tag{
      color:var(--green);
      font-size:13px;
      letter-spacing:2px;
      font-weight:700;
      margin-bottom:12px;
      display:block;
    }

    /* Categories */

    .category-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:30px;
    }

    .category-card{
      background:linear-gradient(180deg,#111,#070707);
      border-radius:28px;
      padding:25px;
      border:1px solid rgba(255,255,255,0.05);
      transition:0.5s;
      position:relative;
      overflow:hidden;
      cursor:pointer;
    }

    .category-card::before{
      content:'';
      position:absolute;
      width:200px;
      height:200px;
      background:radial-gradient(circle, rgba(141,255,0,0.15), transparent 70%);
      top:-80px;
      right:-80px;
      transition:0.5s;
    }

    .category-card:hover::before{
      transform:scale(1.3);
    }

    .category-card:hover{
      transform:translateY(-12px);
      border-color:rgba(141,255,0,0.3);
      box-shadow:0 20px 60px rgba(0,0,0,0.6);
    }

    .category-img{
      height:240px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:25px;
    }

    .category-img img{
      max-width:230px;
      object-fit:contain;
      transition:0.5s;
    }

    .category-card:hover img{
      transform:scale(1.08) rotate(-3deg);
    }

    .category-card h3{
      font-size:1.6rem;
      margin-bottom:12px;
    }

    .category-card p{
      color:var(--muted);
      line-height:1.7;
    }

/* PRODUCT GRID */

.products-grid{
    margin-top:40px;
}

/* PRODUCT CARD */

.product-card{
    background:#0c0c0c;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:15px;
    position:relative;
    overflow:hidden;
    transition:all .3s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#8dff00;
    box-shadow:0 15px 40px rgba(141,255,0,.12);
}

/* SALE BADGE */

.badge{
    position:absolute;
    top:12px;
    left:12px;
    background:#62ad06;
    color:#000;
    font-size:11px;
    font-weight:700;
    padding:6px 12px;
    border-radius:50px;
    z-index:2;
}

/* IMAGE AREA */

.product-image{
    height:250px;
    background:#151515;
    border-radius:15px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:15px;
}

.product-image img{
    width:100%;
    max-width:220px;
    object-fit:contain;
    transition:.4s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* CATEGORY */

.product-category{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#8dff00;
    font-weight:600;
    margin-bottom:6px;
}

/* TITLE */

.product-title{
    font-size:18px;
    font-weight:600;
    line-height:1.4;
    margin-bottom:10px;
    color:#fff;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:50px;
}

/* PRICE SECTION */

.price-row{
    margin-top:auto;
}

.new-price{
    font-size:24px;
    font-weight:700;
    color:#fff;
}

.new-price del{
    color:#777;
    font-size:15px;
    margin-right:8px;
}

.new-price ins{
    text-decoration:none;
    color:#fff;
}

.woocommerce-Price-amount{
    font-weight:700;
}

/* BUTTON */

.product-card .button,
.product-card .add_to_cart_button,
.product-card .added_to_cart{
    margin-top: 10px;
    width:100%;
    display:flex !important;
    justify-content:center;
    align-items:center;
    background:#8dff00 !important;
    color:#000 !important;
    border:none !important;
    border-radius:30px !important;
    padding:12px !important;
    font-size:14px;
    font-weight:700;
    text-decoration:none !important;
    transition:.3s;
}

.product-card .button:hover,
.product-card .add_to_cart_button:hover{
    background:#fff !important;
    color:#000 !important;
}

/* HIDE DEFAULT ARROW */

.arrow-btn{
    display:none !important;
}

/* MOBILE */

@media(max-width:768px){

    .product-image{
        height:220px;
    }

    .product-title{
        font-size:16px;
    }

    .new-price{
        font-size:20px;
    }

}

    /* Features */

    .features-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:25px;
    }

    .feature-card{
      background:#080808;
      border:1px solid rgba(255,255,255,0.05);
      border-radius:24px;
      padding:35px;
      transition:0.5s;
    }

    .feature-card:hover{
      transform:translateY(-10px);
      border-color:rgba(141,255,0,0.25);
      box-shadow:0 20px 50px rgba(0,0,0,0.5);
    }

    .feature-icon{
      width:65px;
      height:65px;
      border-radius:20px;
      background:rgba(141,255,0,0.08);
      color:var(--green);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:28px;
      margin-bottom:25px;
    }

    .feature-card h3{
      font-size:1.5rem;
      margin-bottom:12px;
    }

    .feature-card p{
      color:var(--muted);
      line-height:1.8;
    }

    /* CTA */

    .cta{
      background:linear-gradient(90deg,#0a0a0a,#081500);
      border-radius:35px;
      padding:70px;
      border:1px solid rgba(141,255,0,0.15);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:40px;
      overflow:hidden;
      position:relative;
    }

    .cta::before{
      content:'';
      position:absolute;
      width:500px;
      height:500px;
      background:radial-gradient(circle, rgba(141,255,0,0.18), transparent 70%);
      right:-100px;
      top:-100px;
    }

    .cta h2{
      font-size:4rem;
      line-height:1.1;
      margin-bottom:18px;
    }

    .cta h2 span{
      color:var(--green);
    }

    .cta p{
      color:#b7b7b7;
      max-width:600px;
      line-height:1.8;
    }

    /* Footer */

    footer{
      padding:100px 0 40px;
      border-top:1px solid rgba(255,255,255,0.05);
    }

    .footer-grid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr;
      gap:60px;
    }

    .footer-logo{
      background:white;
      color:var(--green);
      display:inline-block;
      padding:12px 20px;
      border-radius:16px;
      font-weight:900;
      margin-bottom:25px;
    }

    .footer-about p{
      color:#9f9f9f;
      max-width:400px;
      line-height:1.8;
      margin-bottom:25px;
    }

    .socials{
      display:flex;
      gap:15px;
    }

    .socials a{
      width:60px;
      height:60px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#0d0d0d;
      border:1px solid rgba(255,255,255,0.05);
      transition:0.4s;
    }

    .socials a:hover{
      background:var(--green);
      color:black;
      transform:translateY(-5px);
    }

    .footer-links h4{
      margin-bottom:25px;
      color:var(--green);
      letter-spacing:2px;
      font-size:14px;
    }

    .footer-links a{
      display:block;
      color:#b5b5b5;
      margin-bottom:18px;
      transition:0.3s;
    }

    .footer-links a:hover{
      color:var(--green);
      transform:translateX(5px);
    }

    .copyright{
      margin-top:70px;
      border-top:1px solid rgba(255,255,255,0.05);
      padding-top:30px;
      display:flex;
      justify-content:space-between;
      color:#777;
      font-size:14px;
    }

    /* Responsive */

    @media(max-width:1100px){

      .hero-content{
        grid-template-columns:1fr;
      }

      .hero h1{
        font-size:4.5rem;
      }

      .cta{
        flex-direction:column;
        align-items:flex-start;
      }

      .footer-grid{
        grid-template-columns:1fr;
      }

    }

    @media(max-width:768px){

      .nav-links{
        display:none;
      }

      .hero h1{
        font-size:3.5rem;
      }

      .hero-btns{
        flex-direction:column;
      }

      .stats{
        gap:25px;
        flex-wrap:wrap;
      }

      .section-top h2{
        font-size:2.4rem;
      }

      .cta{
        padding:40px 30px;
      }

      .cta h2{
        font-size:2.8rem;
      }

      .copyright{
        flex-direction:column;
        gap:15px;
      }

    }


    .filters{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
    }

    .filter-btn{
      padding:14px 24px;
      border-radius:50px;
      border:1px solid rgba(255,255,255,0.08);
      background:#080808;
      color:white;
      font-weight:700;
      cursor:pointer;
      transition:0.4s;
      position:relative;
      overflow:hidden;
    }

    .filter-btn::before{
      content:'';
      position:absolute;
      width:100%;
      height:100%;
      background:var(--green);
      left:-100%;
      top:0;
      z-index:-1;
      transition:0.4s;
    }

    .filter-btn:hover::before,
    .filter-btn.active::before{
      left:0;
    }

    .filter-btn:hover,
    .filter-btn.active{
      color:black !important;
      transform:translateY(-3px);
    }


/* ===============================
   WooCommerce My Account Layout
================================ */

.woocommerce-account .woocommerce{

    display:flex;
    gap:40px;
    align-items:flex-start;
    padding:5px 0 80px;
}

/* Sidebar */

.woocommerce-MyAccount-navigation{

    width:280px;
    min-width:280px;
    background:#0d0d0d;
    border:1px solid #222;
    border-radius:20px;
    padding:30px;
    position:sticky;
    top:120px;
}

/* Sidebar List */

.woocommerce-MyAccount-navigation ul{

    list-style:none;
    padding:0;
    margin:0;
}

.woocommerce-MyAccount-navigation ul li{

    margin-bottom:18px;
}

/* Sidebar Links */

.woocommerce-MyAccount-navigation ul li a{

    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:500;
    transition:0.3s;
}

.woocommerce-MyAccount-navigation ul li a:hover{

    color:#9dff00;
}

/* Active Menu */

.woocommerce-MyAccount-navigation-link.is-active a{

    color:#9dff00 !important;
}

/* Content Area */

.woocommerce-MyAccount-content{

    flex:1;
    background:#0d0d0d;
    border:1px solid #222;
    border-radius:20px;
    padding:40px;
    color:#fff;
    overflow:hidden;
}

/* Headings */

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3{

    color:#fff;
    margin-bottom:20px;
}

/* Address Boxes */

.woocommerce-Addresses{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.woocommerce-Address{

    background:#111;
    padding:25px;
    border-radius:15px;
    border:1px solid #222;
}

/* Tables */

.woocommerce table.shop_table{

    background:#111;
    color:#fff;
    border-radius:15px;
    overflow:hidden;
}

/* Inputs */

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select{

    width:100%;
    padding:14px;
    border-radius:10px;
    border:none;
    background:#1a1a1a;
    color:#fff;
    margin-top:10px;
}

/* Labels */

.woocommerce form .form-row label{

    color:#fff;
}

/* Buttons */

.woocommerce button.button,
.woocommerce a.button{

    background:#9dff00 !important;
    color:#000 !important;
    border-radius:30px !important;
    padding:14px 24px !important;
    font-weight:600 !important;
    border:none !important;
}

/* Mobile Responsive */

@media(max-width:991px){

    .woocommerce-account .woocommerce{

        flex-direction:column;
    }

    .woocommerce-MyAccount-navigation{

        width:100%;
        min-width:100%;
        position:relative;
        top:0;
    }

    .woocommerce-Addresses{

        grid-template-columns:1fr;
    }
}

.qty-input{
      width: 2rem;
}


.site-main{
  padding: 0 !important;
}