*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins,sans-serif;
}

body{
  background:#000;
  color:#fff;
  overflow-x:hidden;
}
/* DESKTOP: hide Shop Now */
@media (min-width: 769px){
  .menu-toggle{
    display: none;
  }
}
/* Mobile specific navigation */
@media (max-width: 768px) {
    #navLinks {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 75px; /* Adjust based on your nav height */
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        gap: 15px;
        z-index: 999;
    }

    /* This class is added by JavaScript to show the menu */
    #navLinks.active {
        display: flex;
    }

    .mobile-toggle {
        display: block; /* Show only on mobile */
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        margin-left: 10px;
    }
}

/* Ensure the toggle is hidden on Desktop */
@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
    #navLinks {
        display: flex;
    }
}
/* ================= GLASS NAV ================= */
.glass-nav {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%; /* Wider to fit the cart */
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(18px);
  border-radius: 60px;
  z-index: 1000;
  font-size: 20px;
}

  
/* These two rules ensure the center nav stays centered */
.logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
.nav{  display: flex;
  align-items: center;
 justify-content: center;  flex: 2; /* Takes more space to stay centered */

}
.menu-toggle {
  flex: 1;
  justify-content: flex-end;
}
.glass-nav nav {
  flex: 2; /* Takes more space to stay centered */
  display: flex;
  justify-content: center;
}
/* Container for the right side of nav */
.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* The actual Button - size adjusts to content */
.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px; /* Vertical and Horizontal padding */
  background: #00ff4c;
  color: #000;
  border: none;
  border-radius: 50px; /* Capsule shape */
  font-weight: 800;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap; /* Keeps text on one line */
  box-shadow: 0 8px 15px rgba(0, 255, 76, 0.3);
  transition: all 0.3s ease;
}

.nav-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 255, 76, 0.4);
}
.glass-nav nav a {
  margin: 0 16px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.shop-btn{
  background:white;
  color:black;
  padding:8px 20px;
  border-radius:20px;
  text-decoration:none;
}

/* ================= HERO ================= */
.hero-slider{
  height:100vh;
  position:relative;
  align-items: center;
  align-self: auto;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}

.slide.active{opacity:1}

.hero-content{
  position:absolute;
  bottom:20%;
  left:10%;
}

.hero-content h1{font-size:64px}
.hero-content p{margin:15px 0 25px;font-size:22px}

.hero-content button{
  padding:14px 28px;
  border-radius:30px;
  border:none;
  background:#00ff40;
  font-weight:600;
}

/* ================= SHOP GRID ================= */
.shop-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:36px;
  padding:120px 8% 80px;
  background:radial-gradient(circle at top, #101820, #05070a);
}

/* Tablet */
@media (max-width: 1024px){
  .shop-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px){
  .shop-grid{
    grid-template-columns:repeat(2, 1fr);
    padding:100px 6% 60px;
  }
}

/* Small phones */
@media (max-width: 480px){
  .shop-grid{
    grid-template-columns:1fr;
    padding:100px 5% 50px;
  }
}

/* ================= PRODUCT CARD ================= */
.product-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  background:rgba(255,255,255,0.10);
  backdrop-filter:blur(22px);
  border-radius:28px;
  padding:32px;
  position:relative;
  box-shadow:
    0 20px 60px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.15);
  transition:.4s ease;
}

.product-card:hover{
  transform:translateY(-12px);
}

/* Glow edge */
.product-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  opacity:.5;
  pointer-events:none;
}

/* ================= IMAGE ================= */
.image-box{
  width:100%;
}

.image-box img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.5);
}

/* ================= THUMBS ================= */
.thumbs{
  display:flex;
  justify-content:center;
  gap:12px;
  margin:16px 0;
}

.thumbs img{
  width:54px;
  height:54px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.25);
  cursor:pointer;
  transition:.3s;
}

.thumbs img:hover{
  transform:scale(1.1);
}

/* ================= INFO ================= */
.info{
  text-align:center;
  width:100%;
  
}

.info h3{
  margin-top:14px;
  font-size:20px;
}

.price{
  margin:8px 0 16px;
  color:#00ff15;
  font-weight:600;
  font-size:18px;
}

/* ================= SELECT & BUTTON ================= */
.product-card select{
  width:100%;
  padding:12px;
  border-radius:14px;
  background:rgba(255,255,255,.12);
  color:white;
  border:1px solid rgba(255,255,255,.2);
  margin-bottom:16px;
}

.product-card button{
  width:100%;
  padding:14px;
  border-radius:22px;
  border:none;
  background:linear-gradient(135deg,#00ff4c,#00ff22);
  color:#000;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.product-card button:hover{
  box-shadow:0 0 25px rgba(255,216,0,.6);
}

/* ================= FOOTER ================= */
.footer-wrapper{
  display:flex;
  gap:40px;
  padding:60px;
  background:radial-gradient(circle,#111,#000);
  max-width:1400px;
  margin:0 auto;
}

.footer-dark {
  background: #0d0d0d;
  padding: 60px 5% 30px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center; /* Ensures base text centering */
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* Brand Section Centering */
.footer-brand-section {
  text-align: center;
  flex: 1;
}

.footer-logo {
  font-size: 26px;
  letter-spacing: 6px;
  margin-bottom: 15px;
  font-weight: 900;
  align-items: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  align-self: center;
  
}

.social-icons img { width: 40px; filter: brightness(1.5); align-items: center;}

/* Menu Styling */
.footer-columns 
{ display: flex; gap: 40px; text-align: left; }
.green 
{ color: #ffffff; font-size: 13px; font-weight: 800; margin-bottom: 20px; }
.footer-columns a { display: block; color: #ccc; font-size: 14px; margin-bottom: 10px; text-decoration: none; }

/* Action Buttons */
.footer-actions { display: flex; flex-direction: column; gap: 12px; }
.action-btn {
  background-color: #252525; /* Bright green for visibility */
  color: #ffffff; /* Black text */
  text-decoration: none; /* Removes underline */
  padding: 14px 32px;
  border: none;
  border-radius: 40px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  min-width: 220px;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.action-btn:hover {
  background-color: #00e01f; /* Slightly darker green on hover */
  transform: scale(1.05); /* Subtle zoom effect */
}

/* Bottom Centering */
.footer-bottom { border-top: 1px solid #222; padding-top: 30px; }
.footer-bottom-flex {
  display: flex;
  flex-direction: column; /* Centered Stack for Bottom */
  align-items: center;
  gap: 20px;
}

.payments { display: flex; justify-content: center; gap: 15px; }
.payments img { height: 18px; opacity: 0.7; }

.policies { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.policies a { color: #fff; font-size: 12px; text-decoration: none; font-weight: 600; }
.copy { font-size: 11px; color: #666; margin-top: 10px; }

/* MOBILE ALIGNMENT FIX */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center; /* Forces center alignment on mobile */
  }
  
  .footer-columns { display: none; } /* Hide menus for clean mobile look */
  
  .footer-actions {
    width: 100%;
    align-items: center; /* Centers buttons horizontally */
    margin-top: 20px;
  }

  .policies {
    flex-direction: column; /* Vertical stack for mobile links */
    gap: 12px;
  }
}
/* =========================================
   MOBILE CENTERING (Max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
  .footer-dark {
    padding: 40px 20px;
    margin: 10px;
    text-align: center; /* Centers all inline/text elements */
  }

  .footer-main {
    flex-direction: column;
    align-items: center; /* Centers flex items horizontally */
    margin-bottom: 30px;
  }

  .footer-columns {
    display: none; /* Hide complex columns on mobile for the centered look */
  }

  .mobile-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-actions {
    width: 100%;
    max-width: 300px; /* Constrains button width for better mobile look */
    align-items: center;
    margin: 0 auto 30px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .payments {
    justify-content: center;
    width: 100%;
  }

  .bottom-right {
    text-align: center; /* Overrides desktop right-alignment */
    width: 100%;
  }

  .policies {
    flex-direction: column; /* Stacks links as seen in reference image_ceeca0.png */
    gap: 12px;
    align-items: center;
  }
}

/* --- MOBILE RESPONSIVE OVERRIDE --- */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-columns {
    display: none; /* Hides desktop columns for cleaner mobile look */
  }

  .mobile-center-content {
    order: -1; /* Puts logo/socials at the top */
    margin-bottom: 30px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-actions {
    width: 100%;
    align-items: center;
    margin-bottom: 40px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 20px;
  }

  .policies {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .bottom-right {
    text-align: center;
  }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
  }
  .footer-columns {
    gap: 40px;
  }
  .footer-actions {
    width: 100%;
  }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-actions {
    align-items: flex-start;
    width: 100%;
  }

  .footer-columns {
    gap: 40px;
  }
}

/* ================= FOOTER MOBILE ================= */
@media (max-width: 900px){
  .footer-wrapper{
    flex-direction:column;
    padding:40px 20px;
  }

  .newsletter-card{
    width:100%;
  }

  .footer-columns{
    gap:40px;
  }
}

/* ================= NAV MOBILE ================= */
@media (max-width: 768px){
  .glass-nav{
    padding:12px 20px;
  }

  .glass-nav nav{
    display:flex;
  }

  .glass-nav nav a{
    margin:0 10px;
    font-size:14px;
  }

  .shop-btn{
    padding:6px 14px;
    font-size:13px;
  }
}

.menu-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}



@media (max-width: 768px){
  .menu-toggle{
    display:block;
  }

  .glass-nav nav{
    display:none;
    position:absolute;
    top:70px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(20px);
    padding:20px;
    border-radius:20px;
    flex-direction:column;
  }

  .glass-nav nav a{
    margin:12px 0;
    font-size:16px;
  }

  .glass-nav.active nav{
    display:flex;
  }
}
.cart-btn {
  background: #00ff4c;
  color: black;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

#cart-count {
  font-weight: 800;
}

/* Keep your existing nav links style */
.glass-nav nav a {
  margin: 0 16px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Mobile Menu Fix */
@media (max-width: 768px) {
  .glass-nav nav { display: none; }
  .glass-nav.active nav {
    display: flex;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    width: 90%;
    padding: 20px;
    border-radius: 20px;
  }
}/* Cart Drawer Styling */
#cartDrawer {
  position: fixed;
  right: -400px;
  top: 0;
  width: 380px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2000;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

#cartDrawer.open { right: 0; }

.cart-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 10px;
}

.remove-btn {
  background: none;
  border: none;
  color: #ff4d4d;
  cursor: pointer;
  font-size: 18px;
}

.cart-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: #00ff4c;
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(0, 255, 76, 0.2);
}
/* Styling the Select Box */
#size-tshirt1 {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    
    /* Futuristic Glass Effect */
    background: rgba(255, 255, 255, 0.08); /* Very transparent white */
    backdrop-filter: blur(15px); /* Strong background blur */
    -webkit-backdrop-filter: blur(15px);
    
    /* Border & Glow */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border */
    border-radius: 16px; /* Smooth rounded corners */
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 
                0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Clean appearance */
    cursor: pointer;
    outline: none;
    appearance: none; /* Removes default browser arrow */
    -webkit-appearance: none;
    
    /* Custom arrow icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#size-tshirt2 {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    
    /* Futuristic Glass Effect */
    background: rgba(255, 255, 255, 0.08); /* Very transparent white */
    backdrop-filter: blur(15px); /* Strong background blur */
    -webkit-backdrop-filter: blur(15px);
    
    /* Border & Glow */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border */
    border-radius: 16px; /* Smooth rounded corners */
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 
                0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Clean appearance */
    cursor: pointer;
    outline: none;
    appearance: none; /* Removes default browser arrow */
    -webkit-appearance: none;
    
    /* Custom arrow icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#size-tshirt3 {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    
    /* Futuristic Glass Effect */
    background: rgba(255, 255, 255, 0.08); /* Very transparent white */
    backdrop-filter: blur(15px); /* Strong background blur */
    -webkit-backdrop-filter: blur(15px);
    
    /* Border & Glow */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border */
    border-radius: 16px; /* Smooth rounded corners */
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 
                0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Clean appearance */
    cursor: pointer;
    outline: none;
    appearance: none; /* Removes default browser arrow */
    -webkit-appearance: none;
    
    /* Custom arrow icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#size-tshirt4 {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    
    /* Futuristic Glass Effect */
    background: rgba(255, 255, 255, 0.08); /* Very transparent white */
    backdrop-filter: blur(15px); /* Strong background blur */
    -webkit-backdrop-filter: blur(15px);
    
    /* Border & Glow */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border */
    border-radius: 16px; /* Smooth rounded corners */
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 
                0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Clean appearance */
    cursor: pointer;
    outline: none;
    appearance: none; /* Removes default browser arrow */
    -webkit-appearance: none;
    
    /* Custom arrow icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#size-tshirt5 {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    
    /* Futuristic Glass Effect */
    background: rgba(255, 255, 255, 0.08); /* Very transparent white */
    backdrop-filter: blur(15px); /* Strong background blur */
    -webkit-backdrop-filter: blur(15px);
    
    /* Border & Glow */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border */
    border-radius: 16px; /* Smooth rounded corners */
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 
                0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Clean appearance */
    cursor: pointer;
    outline: none;
    appearance: none; /* Removes default browser arrow */
    -webkit-appearance: none;
    
    /* Custom arrow icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#size-tshirt6 {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    
    /* Futuristic Glass Effect */
    background: rgba(255, 255, 255, 0.08); /* Very transparent white */
    backdrop-filter: blur(15px); /* Strong background blur */
    -webkit-backdrop-filter: blur(15px);
    
    /* Border & Glow */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Soft border */
    border-radius: 16px; /* Smooth rounded corners */
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 
                0 4px 15px rgba(0, 0, 0, 0.3);
    
    /* Clean appearance */
    cursor: pointer;
    outline: none;
    appearance: none; /* Removes default browser arrow */
    -webkit-appearance: none;
    
    /* Custom arrow icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover & Focus Effects */
#size-tshirt1:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 255, 76, 0.4); /* Glow matching your brand green */
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.2);
}

#size-tshirt1:focus {
    border-color: #00ff4c;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.3);
}

/* Styling the options inside the dropdown */
#size-tshirt1 option {
    background: #121212; /* Options cannot be blurred, so we use a dark theme */
    color: #fff;
    padding: 10px;
}
#size-tshirt2:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 255, 76, 0.4); /* Glow matching your brand green */
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.2);
}

#size-tshirt2:focus {
    border-color: #00ff4c;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.3);
}

/* Styling the options inside the dropdown */
#size-tshirt2 option {
    background: #121212; /* Options cannot be blurred, so we use a dark theme */
    color: #fff;
    padding: 10px;
}
#size-tshirt3:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 255, 76, 0.4); /* Glow matching your brand green */
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.2);
}

#size-3:focus {
    border-color: #00ff4c;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.3);
}

/* Styling the options inside the dropdown */
#size-tshirt3 option {
    background: #121212; /* Options cannot be blurred, so we use a dark theme */
    color: #fff;
    padding: 10px;
}
#size-tshirt4:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 255, 76, 0.4); /* Glow matching your brand green */
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.2);
}

#size-tshirt4:focus {
    border-color: #00ff4c;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.3);
}

/* Styling the options inside the dropdown */
#size-tshirt4 option {
    background: #121212; /* Options cannot be blurred, so we use a dark theme */
    color: #fff;
    padding: 10px;
}
#size-tshirt5:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 255, 76, 0.4); /* Glow matching your brand green */
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.2);
}

#size-tshirt5:focus {
    border-color: #00ff4c;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.3);
}

/* Styling the options inside the dropdown */
#size-tshirt5 option {
    background: #121212; /* Options cannot be blurred, so we use a dark theme */
    color: #fff;
    padding: 10px;
}
#size-tshirt6:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(0, 255, 76, 0.4); /* Glow matching your brand green */
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.2);
}

#size-tshirt6:focus {
    border-color: #00ff4c;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.3);
}

/* Styling the options inside the dropdown */
#size-tshirt6 option {
    background: #121212; /* Options cannot be blurred, so we use a dark theme */
    color: #fff;
    padding: 10px;
}
/* ===============================
   MODAL OVERLAY
================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* ===============================
   MODAL CONTAINER
================================ */
.modal-content {
    background: var(--deep-black);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    max-width: 1200px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 80px rgba(0, 255, 76, 0.12);
    
    /* ADD THESE THREE LINES */
    max-height: 90vh;      /* Limits height to 90% of the screen */
    overflow-y: auto;      /* Enables vertical scrollbar when needed */
    scrollbar-width: thin; /* Makes the scrollbar less bulky in Firefox */
}

/* Optional: Style the scrollbar for Chrome/Safari to keep it looking "Neon" */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 10px;
}
/* ===============================
   MODAL BODY (GRID)
================================ */
.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0px;
    padding: 60px;
    justify-content: center;
}

/* ===============================
   GALLERY / CONTENT COLUMN
================================ */
.modal-gallery {
    grid-column: 1 / -1; /* spans center when only one column used */
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* ===============================
   SIZE CHART BUTTON
================================ */
.size-chart-btn {
    align-self: flex-start;
    margin-bottom: 20px;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid var(--neon-green);
    background: transparent;
    color: var(--neon-green);
    font-weight: 700;
    cursor: pointer;
}

/* ===============================
   MAIN IMAGE
================================ */
.main-modal-img {
    width: 10%;
    height: 20%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

/* ===============================
   THUMB STRIP
================================ */
.thumb-strip {
    display: flex;
    gap: 12px;
    margin: 20px 0 30px;
}

.thumb-strip img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.thumb-strip img:hover,
.thumb-strip img.active {
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.4);
}

/* ===============================
   PRODUCT INFO
================================ */
.modal-gallery h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 10px;
}

.modal-gallery .price {
    color: var(--neon-green);
    font-size: 32px;
    font-weight: 900;
    margin: 15px 0;
}

/* ===============================
   SIZE SELECT
================================ */
.dark-select {
    margin-top: 25px;
    padding: 16px 22px;
    border-radius: 30px;
    background: rgba(255,255,255,0.06);
    color: white;
    border: 1px solid var(--glass-border);
    font-size: 16px;
    cursor: pointer;
}

/* ===============================
   ACTION BUTTON
================================ */
.modal-action-row {
    margin-top: 30px;
}

.action-btn {
    width: 100%;
    padding: 18px;
    border-radius: 35px;
    background: var(--neon-green);
    border: none;
    color: black;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 255, 76, 0.5);
}

/* ===============================
   CLOSE BUTTON
================================ */
.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    z-index: 100;
}

/* ===============================
   SIZE CHART OVERLAY
================================ */
.size-chart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.size-chart-overlay.active {
    display: flex;
}

.size-chart-content {
    max-width: 600px;
    width: 90%;
    background: #000;
    border-radius: 30px;
    padding: 20px;
}

.size-chart-img {
    width: 100%;
    border-radius: 20px;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .modal-gallery {
        max-width: 100%;
    }

    .modal-gallery h2 {
        font-size: 30px;
    }

    .modal-gallery .price {
        font-size: 24px;
    }
}

/* ================= UNIFIED GLASS DROPDOWNS ================= */
.dark-select, .product-card select, #modalSize {
    width: 100%;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: white;
    font-size: 16px;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    transition: 0.3s;
    margin-bottom: 20px;
}

.dark-select:hover, .product-card select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-green);
}
/* ================= THE ANIMATED BORDER EFFECT ================= */
/* This creates the moving green line around cards and buttons */
@keyframes borderRotate {
    100% { transform: rotate(360deg); }
}

.glow-border {
    position: relative;
    overflow: hidden; /* Clips the rotating light */
    z-index: 1;
}

.glow-border::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        transparent, 
        transparent, 
        var(--neon-green)
    );
    top: -50%;
    left: -50%;
    animation: borderRotate 4s linear infinite;
    z-index: -2;
}

/* This creates the "Inner" card color so the green line only shows on the edge */
.glow-border::after {
    content: "";
    position: absolute;
    inset: 2px; /* Thickness of the green line */
    background: var(--deep-black);
    border-radius: inherit;
    z-index: -1;
}
/* ================= BIG ACTION BUTTONS ================= */
.action-btn, .product-card button, #modalAddBtn {
    width: 100%;
    padding: 18px;
    background: var(--neon-green);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.action-btn:hover {
    box-shadow: 0 0 30px var(--neon-green);
    transform: scale(1.02);
}

/* ================= MOBILE ADAPTATION ================= */
@media (max-width: 900px) {
    .modal-body { grid-template-columns: 1fr; padding: 40px; }
    .modal-content { border-radius: 30px; margin-top: 40px; }
    .modal-info h2 { font-size: 28px; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 500px) {
    .shop-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 38px; }
}/* ================= ANIMATION DEFINITION ================= */
@keyframes border-beam {
    100% { offset-distance: 100%; }
}

/* ================= ANIMATION DEFINITION ================= */
@keyframes border-beam {
    100% { offset-distance: 100%; }
}

/* ================= PRODUCT CARDS ================= */
.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
    overflow: hidden; /* Important for the beam */
}

/* The Animated Beam (Hidden by default, shows on hover) */
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 35px;
    background: conic-gradient(from 0deg, transparent 70%, #00ff4c 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.5s;
}

.product-card:hover::before {
    opacity: 1;
    animation: border-beam 3s linear infinite;
}

/* ================= BUTTONS & SELECTS ================= */
.nav-cart-btn, .product-card button, .dark-select {
    position: relative;
    background: #00ff4c;
    color: #000;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.3);
    transition: 0.3s;
    overflow: hidden;
}

/* Moving glow inside the buttons */
.product-card button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.product-card button:hover::after {
    left: 100%;
}

/* ================= MODAL SWIPER ================= */
.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-modal-img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    border: 1px solid rgba(0, 255, 76, 0.3);
}

.thumb-strip {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumb-strip img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.thumb-strip img:hover, .thumb-strip img.active {
    border-color: #00ff4c;
    transform: scale(1.1);
}
/* Styling for the Modal Add to Cart Button */
#modalAddBtn {
    background-color: #00ff4c; /* Neon green from your screenshot */
    color: #000;
    border: none;
    padding: 12px 25px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

#modalAddBtn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.5);
}

/* Styling for the thumbnail strip below the main image */
.thumb-strip {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.modal-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.modal-thumb:hover {
    border-color: #00ff4c;
}

/* Modal layout adjustment to match your screen */
.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image left, info right */
    gap: 30px;
    align-items: center;
}
/* --- DARK NEON SELECT DROPDOWN --- */
.dark-select {
    background: #1a1a1a;
    color: white;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    appearance: none; /* Removes default arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.dark-select option {
    background: #1a1a1a;
    color: white;
}

/* --- NEON GREEN GLOW BUTTONS --- */
.product-card button, .action-btn {
    background: #00ff4c !important; /* Matches your screenshot green */
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 255, 76, 0.3);
}

.product-card button:hover, .action-btn:hover {
    box-shadow: 0 0 25px rgba(0, 255, 76, 0.6);
    transform: translateY(-2px);
}

/* --- MODAL GLASS EFFECT --- */
.modal-content {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    align-items: center;
}
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .shop-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* This creates 2 equal columns */
        gap: 12px; /* Reduced gap to save space on small screens */
        padding: 10px;
    }

    .product-card {
        padding: 10px;
        border-radius: 15px;
    }

    /* Adjust font sizes so text fits in the smaller cards */
    .product-card h3 {
        font-size: 14px;
        margin: 5px 0;
    }

    .product-card .price {
        font-size: 13px;
    }

    /* Make the neon button smaller for 2-column layout */
    .product-card button {
        padding: 8px;
        font-size: 11px;
        border-radius: 8px;
    }

    /* Make the size dropdown more compact */
    .dark-select {
        padding: 6px;
        font-size: 11px;
        margin-bottom: 8px;
    }
}
/* Hide the default system cursor everywhere */
html, body {
    cursor: none;
}

/* The outer glowing ring */
#custom-cursor {
    width: 20px;
    height: 20px;
    background: rgba(0, 255, 76, 0.3); /* Transparent neon green */
    border: 2px solid #00ff4c; /* Solid neon green border */
    border-radius: 50%;
    position: fixed;
    pointer-events: none; /* Allows clicking through the cursor */
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.6);
}

/* The inner solid dot */
#cursor-dot {
    width: 4px;
    height: 4px;
    background: #00ff4c;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

/* Hover effect for buttons and links */
.cursor-grow {
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 255, 76, 0.1) !important;
    border-width: 1px !important;
}
/* --- FOOTER BASE --- */
.footer-dark {
    background: #000;
    padding: 60px 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
}

/* --- MAIN LAYOUT --- */
.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Pushes brand left, buttons right */
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* Brand Section Styling */
.footer-brand-section {
    flex: 1;
    min-width: 250px;
}

.footer-big-logo {
    max-width: 240px; /* Adjust size based on your i/t.png */
    margin-bottom: 10px;
}

.brand-tagline {
    color: #888;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2) rotate(5deg);
}

/* Links Grid Styling */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    flex: 2;
}

.footer-column h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #00ff4c; /* Neon green hover */
}

/* Action Buttons Section */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end; /* Align right on desktop */
}

.action-btn.neon-glow {
    background: #00ff4c;
    color: black;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    width: 240px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.3);
    transition: 0.3s;
}

.action-btn.neon-glow:hover {
    box-shadow: 0 0 25px rgba(0, 255, 76, 0.7);
    transform: translateX(-5px);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.policies {
    margin-bottom: 15px;
}

.policies a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 17px;
}

.copy {
    color: #ffffff;
    font-size: 13px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-actions {
        align-items: center;
    }
    .footer-links-grid {
        width: 100%;
    }
}
/* Size Chart Button Style */
.size-chart-btn {
    background: transparent;
    color: #00ff4c;
    border: 1px solid #00ff4c;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 12px;
}

.size-chart-btn:hover {
    background: rgba(0, 255, 76, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.3);
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Size chart is smaller than Add to Cart */
    gap: 10px;
    margin-top: 20px;
}

/* Size Chart Overlay (The Popup) */
.size-chart-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.size-chart-overlay.active {
    display: flex;
}

.size-chart-img {
    max-width: 90vw;
    max-height: 80vh;
    border: 2px solid #00ff4c;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 76, 0.5);
}

.close-chart {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
/* ===============================
   SEARCH BAR
================================ */
.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 25px auto 0;
    z-index: 900;
}

#productSearch {
    width: 100%;
    padding: 16px 22px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: white;
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(12px);
}

#productSearch::placeholder {
    color: #888;
}

/* ===============================
   SEARCH DROPDOWN
================================ */
.search-results {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    overflow: hidden;
    display: none;
}

.search-results.active {
    display: block;
}

.search-item {
    padding: 14px 22px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.25s;
}

.search-item:hover {
    background: rgba(0,255,76,0.15);
    color: var(--neon-green);
}
.product-card.highlight {
    box-shadow: 0 0 40px rgba(0,255,76,0.6);
    transform: scale(1.02);
}
.product-card.highlight {
    box-shadow: 0 0 40px rgba(0, 255, 76, 0.6);
    transform: scale(1.02);
    transition: all 0.3s ease;
}
