* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}
/* ===================== SEARCH BAR STYLING ===================== */
.search-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
    margin-top: 20px;
}

#productSearch {
    width: 300px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

#productSearch:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.2);
    width: 400px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px; /* This creates the space between the two buttons */
    margin-right: 15px;
}

.nav-icon-circle {
    width: 45px;
    height: 45px;
    background: #00ff4c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: black;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 76, 0.2);
    position: relative;
}
/* MOBILEs RESPONSIVE FIX */
@media screen and (max-width: 768px) {
    .glass-nav {
        padding: 10px 15px; /* Adds space inside the nav bar */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-right {
        gap: 12px !important; /* Forces a gap between Track and Cart on phone */
        margin-right: 5px;
    }

    .nav-icon-circle {
        width: 38px;  /* Slightly smaller buttons for phone screens */
        height: 38px;
        font-size: 16px;
    }

    #cart-count {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
    
}
.nav-icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.5);
}

/* Cart count badge adjustment */
#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: black;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 1px solid #00ff4c;
}
body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
}
html {
    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, 0.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;
}


/* ================= 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.1);
  backdrop-filter: blur(22px);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: 0.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, 0.25),
    transparent
  );
  opacity: 0.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, 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, 0.25);
  cursor: pointer;
  transition: 0.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, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.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: 0.3s;
}

.product-card button:hover {
  box-shadow: 0 0 25px rgba(255, 216, 0, 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, 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);
}

/* ═══════════════════════════════════════
   ULTRA MOBILE PRODUCT MODAL FIX
═══════════════════════════════════════ */

@media(max-width:768px){

  /* OVERLAY */

  .modal-overlay{
    padding:0;
    align-items:flex-end;
  }

  /* MODAL CONTAINER */

  .modal-content{

    width:100%;
    height:92vh;

    border-radius:
    28px 28px 0 0;

    overflow:hidden;

    display:flex;
    flex-direction:column;

    animation:mobileModal .45s ease;
  }

  /* BODY */

  .modal-body{

    display:flex;
    flex-direction:column;

    height:100%;

    overflow:hidden;
  }

  /* ================= IMAGE AREA ================= */

  .modal-gallery{

    position:relative;

    width:100%;
    height:48vh;

    min-height:48vh;

    flex:none;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:
    radial-gradient(circle at center,
    rgba(0,255,102,.08),
    transparent 70%);
  }

  .modal-gallery::before{

    width:380px;
    height:380px;

    opacity:.7;
  }

  /* PRODUCT IMAGE */

  .main-modal-img{

    width:auto;
    max-width:92%;
    max-height:85%;

    object-fit:contain;

    margin-top:15px;
  }

  /* ================= THUMBNAILS ================= */

  .thumb-strip{

    position:absolute;

    bottom:14px;
    left:50%;

    transform:translateX(-50%);

    width:100%;

    padding:0 14px;

    overflow-x:auto;

    justify-content:flex-start;

    gap:10px;

    scrollbar-width:none;
  }

  .thumb-strip::-webkit-scrollbar{
    display:none;
  }

  .thumb-strip img{

    min-width:58px;
    width:58px;
    height:58px;

    border-radius:14px;

    flex:none;
  }

  /* ================= INFO AREA ================= */

  .modal-info{

    flex:1;

    overflow-y:auto;

    padding:
    26px 20px 40px;

    justify-content:flex-start;

    background:#080808;

    border-top:
    1px solid rgba(255,255,255,.05);
  }

  .modal-info::before{
    display:none;
  }

  /* TITLE */

  #modalTitle{

    font-size:2rem;

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:10px;
  }

  /* PRODUCT CODE */

  #modalCode{

    font-size:10px;

    letter-spacing:2px;
  }

  /* PRICE */

  #modalPrice{

    font-size:1.8rem;

    margin:
    18px 0 20px;
  }

  /* DESCRIPTION */

  .modal-desc{

    font-size:13px;

    line-height:1.6;

    margin-bottom:22px;

    color:#9a9a9a;
  }

  /* SIZE SELECT */

  .dark-select{

    height:52px;

    border-radius:14px;

    padding:0 16px;

    font-size:13px;

    margin-bottom:16px;
  }

  /* BUTTON */

  #modalAddBtn{

    height:56px;

    border-radius:16px;

    font-size:12px;

    letter-spacing:1.5px;
  }

  /* CLOSE BUTTON */

  .close-modal{

    top:12px;
    right:12px;

    width:42px;
    height:42px;

    font-size:22px;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(10px);
  }

  /* SIZE CHART */

  .size-chart-btn{

    top:12px;
    left:12px;

    padding:10px 14px;

    border-radius:12px;

    font-size:9px;
  }

}

/* ================= SMALL DEVICES ================= */

@media(max-width:480px){

  .modal-gallery{
    height:42vh;
    min-height:42vh;
  }

  .main-modal-img{
    max-width:96%;
    max-height:82%;
  }

  #modalTitle{
    font-size:1.7rem;
  }

  #modalPrice{
    font-size:1.5rem;
  }

  .modal-info{
    padding:
    22px 16px 34px;
  }

  .thumb-strip img{

    width:52px;
    height:52px;

    min-width:52px;
  }

}

/* ================= ANIMATION ================= */

@keyframes mobileModal{

  from{
    transform:translateY(100%);
  }

  to{
    transform:translateY(0%);
  }

}
/* ===============================
   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%;
  }
}

/* ================= 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;
}

.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;
}
/* ================= HERO SLIDER RESPONSIVE ================= */
/* Tablets */
@media (max-width: 992px) {
  .hero-slider {
    height: 85vh;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 15px;
  }}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider {
    height: 75vh;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.15;
    text-align: center;
  }

  .hero-content p {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .hero-content button {
    width: 100%;
    max-width: 260px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-slider {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 12px;
  }
}

@keyframes blinkCursor {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* Styling for the Customer Details Form */
#customerDetails {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
}

#customerDetails h4 {
  margin-top: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#customerDetails input,
#customerDetails textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  color: white;
  font-family: inherit;
  box-sizing: border-box; /* Ensures padding doesn't break width */
  outline: none;
  transition: all 0.3s ease;
}

/* Change border color when user clicks the box */
#customerDetails input:focus,
#customerDetails textarea:focus {
  border-color: #00ff4c;
  background: rgba(255, 255, 255, 0.15);
}

/* Style the placeholder text color */
#customerDetails input::placeholder,
#customerDetails textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* Ensure the text area doesn't look bulky */
#customerDetails textarea {
  resize: none;
  height: 80px;
}
* Base Styles */ .banner-slider {
  position: relative;
  width: 100%;
  /* Set a height for desktop */
  height: 100;
  overflow: hidden;
  background-color: #000;
}

.banner-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-position: center;
  background-repeat: no-repeat;
  /* Desktop default */
  background-size: cover;
}

.banner-slider .slide.active {
  opacity: 1;
}

/* Mobile Optimization: Full Visibility */
@media (max-width: 768px) {
  .banner-slider {
    /* Adjust height to match your image aspect ratio */
    /* If your image is 16:9, use 56.25vw */
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .banner-slider .slide {
    /* "contain" ensures the whole image is visible */
    background-size: contain;
    background-color: #000;
  }
}
#typewriter-paragraph {
  white-space: pre-wrap; /* This tells the browser to show the line breaks */
}


/* ================= SEARCH WRAPPER ================= */
.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 20px auto;
    z-index: 1001; /* Above the hero slider */
}

#productSearch {
    width: 100%;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#productSearch:focus {
    border-color: #00ff4c;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* Optional: Placeholder text color */
#productSearch::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ================= SEARCH RESULTS (If using dropdown) ================= */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(0, 255, 76, 0.2);
    display: none; /* Shown via JS if you implement suggestions */
}
@media screen and (max-width: 768px) {
    .glass-nav {
        top: 20px; /* Moves it slightly higher on mobile */
    }
    .search-wrapper {
        width: 90%; /* Makes search bar wider on mobile */
    }
}
.no-results-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}
/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
    /* Target the main hero container */
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Centers everything horizontally */
        justify-content: center !important;
        text-align: center !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Force "WEAR THE VIBE" paragraph to center */
    .hero-content p {
        width: 100% !important;
        margin: 10px 0 !important;
        text-align: center !important;
        display: block !important;
    }

    /* Ensure the Heading and Button also follow suit */
    .hero-content h1 {
        margin-bottom: 5px !important;
    }

    .hero-content button {
        margin: 20px auto 0 !important;
    }
}
@media screen and (max-width: 768px) {
    .glass-nav {
        justify-content: center !important;
        gap: 10px;
        padding: 10px;
    }

    /* Hide standard nav links on mobile if using a toggle */
    #navLinks {
        display: none; 
    }

    .mobile-toggle {
        font-size: 18px !important;
        font-weight: 700;
        margin: 0 auto; /* Pulls it to the center */
    }

    .nav-right {
        gap: 10px !important;
    }
}
/* This adds a smooth fade to the video element specifically */
.splash-video {
    transition: opacity 1.5s ease;
}

#loading-screen.fade-out .splash-video {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1); /* Optional: slight zoom out during fade */
}
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Increase 0.8s to 2.0s for a bigger, slower fade */
    transition: opacity 2.0s cubic-bezier(0.4, 0, 0.2, 1), visibility 2.0s;
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.splash-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the video */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover; /* Prevents black bars on the sides */
    z-index: 1;
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

@keyframes neonPulse {
    from { filter: drop-shadow(0 0 5px #00ff4c); transform: scale(1); }
    to { filter: drop-shadow(0 0 20px #00ff4c); transform: scale(1.05); }
}

@keyframes loadProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.fade-out {
    opacity: 0;
    visibility: hidden;
}




/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
   .vision-logo {
        width: 140px; /* Slightly smaller for better fit */
        margin: 0 auto 20px auto;
    }

    .vision-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 15px;
    }

    .vision-footer {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
  }
    /* Shift container slightly up on mobile to avoid overlapping browser UI */
.vision-container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
        text-align: center; /* Keeps core content centered */
        padding: 20px;
    }

/* --- ANIMATIONS --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* The Core Glow (The 'fucking neon' look) */
        .glow-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            filter: blur(8px);
            opacity: 0.6;
            animation: pulseGlow 1.5s ease-in-out infinite alternate;
        }

        @keyframes drawLogo {
            0% { stroke-dashoffset: 1000; }
            50% { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: 0; fill: rgba(57, 255, 20, 0.05); }
        }

        @keyframes pulseGlow {
            from { transform: scale(0.95); opacity: 0.4; }
            to { transform: scale(1.05); opacity: 0.8; }
        }

        /* Entrance Transition for the Webpage */
        .loaded-out {
            animation: exitScreen 0.8s forwards;
        }

        @keyframes exitScreen {
            to { opacity: 0; transform: scale(1.2); pointer-events: none; }
        }.logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }


        /* The Logo */
        .logo {
            width: 150px; /* Adjust size as needed */
            height: auto;
            z-index: 2;
            filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.2));
            animation: logo-flicker 3s infinite;
        }

        /* The Neon Outline SVG */
        .outline-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .outline-rect {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: var(--neon-green);
            stroke-width: 4;
            stroke-dasharray: 600; /* Length of the line */
            stroke-dashoffset: 600; /* Starting position */
            animation: draw-line 2.5s linear infinite;
            filter: drop-shadow(0 0 8px var(--neon-green));
        }

        /* Animations */
        @keyframes draw-line {
            0% { stroke-dashoffset: 600; }
            50% { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: -600; }
        }

        @keyframes logo-flicker {
            0%, 100% { opacity: 1; }
            95% { opacity: 1; }
            96% { opacity: 0.8; }
            97% { opacity: 1; }
            98% { opacity: 0.9; }
        }

        .status {
            position: absolute;
            bottom: -40px;
            color: var(--neon-green);
            font-family: 'Courier New', monospace;
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

/* --- Mobile Media Query --- */
@media (max-width: 768px) {
    .hero-slider-banner-slider {
        /* On mobile, we keep the same shape so the image doesn't crop */
        aspect-ratio: 16 / 9; 
        height: auto;
    }
}
/* Vibe Spotlight Styling */
.vibe-spotlight-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #000, #050505);
    overflow: hidden;
    border-top: 1px solid rgba(0, 255, 76, 0.1);
}

.spotlight-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #888;
    letter-spacing: 5px;
    font-size: 0.7rem;
    margin-top: 10px;
}

.spotlight-scroll-container {
    display: flex;
    gap: 20px;
    padding: 20px 40px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
}

.spotlight-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.spotlight-card {
    flex: 0 0 200px;
    height: 280px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
    cursor: pointer;
}

.spotlight-card:hover {
    transform: translateY(-10px);
    border-color: #00ff4c;
    box-shadow: 0 10px 30px rgba(0, 255, 76, 0.2);
}

.spotlight-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    border-radius: 0 0 15px 15px;
    text-align: center;
}

.spotlight-name {
    color: #00ff4c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spotlight-action {
    text-align: center;
    margin-top: 50px;
}

.vibe-join-btn {
    text-decoration: none;
    color: #00ff4c;
    border: 1px solid #00ff4c;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 900;
    letter-spacing: 2px;
    transition: 0.3s;
    background: rgba(0, 255, 76, 0.05);
}

.vibe-join-btn:hover {
    background: #00ff4c;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 76, 0.4);
}

.spotlight-loader {
    width: 100%;
    text-align: center;
    color: #444;
    letter-spacing: 2px;
/* Ensure the loading screen covers everything */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 10000; /* High z-index is critical */
    overflow: hidden;
}

.splash-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

/* Logic for showing the right video */
#mobile-video { display: none; }
#desktop-video { display: block; }

@media (max-width: 768px) {
    #mobile-video { 
        display: block !important; 
    }
    #desktop-video { 
        display: none !important; 
    }
}}
/* Keep the desktop styling from before, but add/update these parts */
.skip-button {
    position: absolute;
    bottom: 40px; /* Elevated slightly for thumb reach */
    left: 50%;
    transform: translateX(-50%); /* This perfectly centers the button */
    
    z-index: 10001;
    padding: 12px 28px; /* Slightly larger touch target for mobile */
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    cursor: pointer;
    white-space: nowrap; /* Prevents text wrapping */
}

/* Optional: If you want it in the corner on Desktop but Centered on Mobile */
@media (min-width: 769px) {
    .skip-button {
        left: auto;
        right: 30px;
        transform: none;
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.skip-button {
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s; /* Button appears after 1.5 seconds */
    opacity: 0; /* Hidden initially */
}
/* Ensure button disappears when the loader fades */
.fade-out {
    opacity: 0;
    pointer-events: none; /* Prevents clicking after it's gone */
    transition: opacity 0.8s ease;
}
.back-home-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon);
    color: var(--neon);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 76, 0.1);
}
.back-home-btn:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 255, 76, 0.4);
    transform: translateX(5px);
}

.btn-icon {
    font-size: 16px;
    font-weight: bold;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .back-home-btn {
        top: auto;
        bottom: 20px;
        left: 20px;
        padding: 8px 12px;
    }
    .btn-text {
        display: none; /* Shows only arrow on small phones to save space */
    }
    .back-home-btn:after {
        content: ' HOME';
        font-size: 10px;
    }
}
.nav-active {
    color: #00ff4c !important;
    font-weight: bold;}
@media screen and (max-width: 768px) {
    #navLinks {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 80px; /* Distance from the top nav bar */
        
        /* THE CENTERING MAGIC */
        left: 50%;
        transform: translateX(-50%); 
        
        width: 80%; /* Makes the menu wider and more balanced in the middle */
        background: rgba(0, 0, 0, 0.281);
        padding: 30px;
        border-radius: 25px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        text-align: center; /* Centers the text (Home, Men, etc.) inside the box */
        z-index: 1000;
    }

    #navLinks.active {
        display: flex !important;
    }

    #navLinks a {
        margin: 15px 0; /* Adds space between the links so they are easier to tap */
        font-size: 1.2rem;
    }
}
/* BLOCK OVERFLOW FOR VISION SECTION */
#brand-vision-section {
    display: block;
    position: relative;
    height: auto; 
    min-height: 100vh;
    overflow: hidden; /* Prevents text from leaking out of the section */
}

@media (max-width: 480px) {
    .vision-description {
        min-height: 200px; /* Adjusts for longer vertical text on thin phones */
        font-size: 0.85rem;
    }
}
.vision-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.vision-logo {
  width: 180px; /* Adjust size based on your logo */
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

#typewriter {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  min-height: 1.2em;
  border-right: 3px solid #00ff4c; /* The cursor */
  display: inline-block;
  padding-right: 10px;
  animation: blink 0.7s infinite;
}

.vision-footer {
  margin-top: 15px;
  font-size: 1.2rem;
  letter-spacing: 10px;
  color: #d3d3cb;
  text-transform: uppercase;
}

/* Cursor blinking animation */
@keyframes blink {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: #00ff4c;
  }
}

@media (max-width: 768px) {
  #typewriter {
    font-size: 1.5rem;
  }
  .vision-logo {
    width: 120px;
  }
}
.vision-description {
  margin: 20px auto;
  max-width: 600px; /* Keeps the text from stretching too wide */
  font-size: 7px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8); /* Soft white */
  font-weight: 300;
  letter-spacing: 0.5px;
  /* Optional: adds a slight fade-in effect for the whole block */
  animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vision-description {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  text-align: center;
  display: inline; /* This keeps the cursor attached to the last word */
}

/* The Cursor at the end position */
.vision-description::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: #00ff4c;
  margin-left: 5px;
  vertical-align: middle;
  animation: blinkCursor 0.8s infinite;
}
/* The Live Signal Pulse */
.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--neon);
    border-radius: 50%;
    display: inline-block;
    animation: signal-pulse 1.5s infinite;
}

@keyframes signal-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 76, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 255, 76, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 76, 0); }
}.neural-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 76, 0.3); /* Neon border */
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.neural-btn:hover {
    background: rgba(0, 255, 76, 0.1);
    border-color: #00ff4c;
    box-shadow: 0 0 20px rgba(0, 255, 76, 0.2);
    transform: translateY(-1px);
}

/* The Pulsing Signal Dot */
.live-signal {
    width: 8px;
    height: 8px;
    background: #00ff4c;
    border-radius: 50%;
    position: relative;
}

.live-signal::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid #00ff4c;
    animation: signal-ripple 1.5s infinite;
}

@keyframes signal-ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}
/* Category Grid Styles */
.category-grid {
    display: flex;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    gap: 5px; /* Subtle spacing between panels */
    background-color: #000;
}

.category-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover effect: Expand the section being hovered */
.category-item:hover {
    flex: 1.2;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-item:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 2;
}

.category-overlay h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: background 0.3s, transform 0.3s;
}

.category-arrow:hover {
    background: white;
    color: black;
    transform: rotate(-45deg);
}
.vision-container {
    position: absolute;
    z-index: 10; /* Ensures text stays on top of slides */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Allows clicks to pass through if needed */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-grid {
        flex-direction: column;
        height: auto;
    }
    .category-item {
        height: 400px;
    }
}
/* ================= MAIN HERO SLIDER ================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
}

/* Active + smooth overlap */
.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slider .slide.prev {
    opacity: 1;
    z-index: 1;
}

/* First slide fallback */
.hero-slider .slide:first-child {
    opacity: 1;
    visibility: visible;
}

/* Video inside hero */
.hero-slider .slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* ================= HERO CONTENT ================= */

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    z-index: 10;
    color: white;
}

.hero-content h1 {
    font-size: 64px;
}

.hero-content p {
    margin: 3px 0 28px;
    font-size: 22px;
    text-align: left;
}

.hero-content button {
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    background: #00ff40;
    font-weight: 600;
    cursor: pointer;
}

/* ================= BANNER SLIDER (SECOND ONE) ================= */

.hero-slider-banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

/* IMPORTANT: scoped slides (NO CONFLICT with main slider) */
.hero-slider-banner-slider .slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.8s ease-in-out;
}

/* Active banner slide */
.hero-slider-banner-slider .slide.active {
    opacity: 1;
    visibility: visible;
}

/* ================= GLOBAL VIDEO FIX ================= */

video {
    max-width: 100%;
    height: auto;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This is the key for mobile responsiveness */
  transform: translate(-50%, -50%);
  z-index: 1;
}



/* Mobile Specific Tweaks */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.mute-btn {
  position: absolute;
  bottom: 15px; /* Slightly tighter to the corner */
  right: 15px;
  z-index: 10;
  
  /* Size & Shape */
  width: 30px;  /* Small, compact size */
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0; /* Reset padding for perfect centering */
  
  /* The "Invisible" Look */
  border: none;
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  /* The Glowing Accent from your photo */
  box-shadow: inset -3px 3px 8px rgba(255, 255, 255, 0.8);
  
  cursor: pointer;
  font-size: 18px; /* Emoji size */
}
/* Sale styling */
.original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.sale-price {
    color: #00ff4c; /* Neon green to match your theme */
    font-weight: bold;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/* Sale Styles */
.price-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.old-price {
    color: #888;
    text-decoration: line-through;
    font-size: 0.9em;
}

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4444; /* Bright red for clearance */
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 900;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
    letter-spacing: 1px;
}

.product-card {
    position: relative; /* Needed to position the badge */
}
/* ════════════════════════════════
   COUNTDOWN TIMER SECTION
════════════════════════════════ */
.drop-timer-section {
  background: #000; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:50px 20px; text-align:center;
}
.drop-timer-section h2 {
  font-family:var(--font-display); font-size:1rem; letter-spacing:5px;
  color:#444; margin-bottom:6px; text-transform:uppercase;
}
.drop-timer-section h2 span { color:var(--neon); }
.drop-label { font-size:.7rem; letter-spacing:3px; color:#333; margin-bottom:30px; }
.countdown-grid {
  display:flex; justify-content:center; gap:20px; flex-wrap:wrap;
}
.countdown-box {
  background:var(--glass); border:1px solid var(--border);
  border-radius:16px; padding:20px 25px; min-width:90px;
  position:relative; overflow:hidden;
}
.countdown-box::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(0,255,76,0.05),transparent);
}
.countdown-box .cnt-num {
  font-family:var(--font-display); font-size:2.5rem; font-weight:900;
  color:#fff; display:block; line-height:1;
}
.countdown-box .cnt-lbl { font-size:.6rem; letter-spacing:3px; color:#444; text-transform:uppercase; margin-top:6px; display:block; }
.drop-cta {
  margin-top:30px; font-size:.75rem; color:#333; letter-spacing:2px;
}
.drop-cta a { color:var(--neon); text-decoration:none; }

/* ════════════════════════════════
   LIVE VISITORS BADGE
════════════════════════════════ */
.live-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,60,60,0.08); border:1px solid rgba(255,60,60,0.2);
  border-radius:50px; padding:6px 16px;
  font-family:var(--font-display); font-size:.65rem; color:#ff8080;
  letter-spacing:2px; margin-bottom:20px;
}
.live-dot {
  width:7px; height:7px; border-radius:50%; background:#ff3c3c;
  animation:pulse 1.5s ease-in-out infinite;
}/* ═══════════════════════════════════════
   CINEMATIC PRODUCT MODAL V5
═══════════════════════════════════════ */

.modal-overlay{
  position:fixed;
  inset:0;

  background:
  radial-gradient(circle at center,
  rgba(0,255,102,.04),
  rgba(0,0,0,.94));

  backdrop-filter:blur(18px);

  display:flex;
  justify-content:center;
  align-items:center;

  z-index:999999;

  padding:30px;

  animation:fadeIn .5s ease;
}

/* ================= MODAL ================= */

.modal-content{

  width:min(1450px,95vw);
  height:min(880px,92vh);

  background:
  linear-gradient(
    145deg,
    rgba(10,10,10,.96),
    rgba(0,0,0,.98)
  );

  border-radius:40px;

  border:1px solid rgba(255,255,255,.06);

  overflow:hidden;

  position:relative;

  box-shadow:
  0 50px 120px rgba(0,0,0,.75),
  0 0 120px rgba(0,255,102,.04);

  display:flex;

  animation:modalPop .7s cubic-bezier(.19,1,.22,1);
}

/* ================= BODY ================= */

.modal-body{
  width:100%;
  height:100%;

  display:grid;
  grid-template-columns:1.1fr .9fr;

  overflow:hidden;
}

/* ================= GALLERY ================= */

.modal-gallery{

  position:relative;

  background:
  radial-gradient(circle at center,
  rgba(0,255,102,.06),
  transparent 70%);

  display:flex;
  justify-content:center;
  align-items:center;

  overflow:hidden;
}

/* BACKGROUND LIGHT */

.modal-gallery::before{

  content:'';

  position:absolute;

  width:700px;
  height:700px;

  background:
  radial-gradient(circle,
  rgba(0,255,102,.08),
  transparent 70%);

  filter:blur(50px);

  animation:pulseGlow 7s infinite ease-in-out;
}

/* MAIN PRODUCT IMAGE */

.main-modal-img{

  width:auto;
  max-width:85%;
  max-height:82%;

  object-fit:contain;

  z-index:5;
  position:relative;

  transition:.5s ease;

  filter:
  drop-shadow(0 30px 60px rgba(0,0,0,.8));
}

.main-modal-img:hover{
  transform:scale(1.03);
}

/* ================= THUMBNAILS ================= */

.thumb-strip{

  position:absolute;

  bottom:30px;
  left:50%;

  transform:translateX(-50%);

  display:flex;
  gap:12px;

  z-index:20;
}

.thumb-strip img{

  width:72px;
  height:72px;

  object-fit:cover;

  border-radius:18px;

  border:1px solid rgba(255,255,255,.08);

  cursor:pointer;

  opacity:.45;

  transition:.35s ease;
}

.thumb-strip img:hover,
.thumb-strip img.active{

  opacity:1;

  border-color:#00ff66;

  transform:
  translateY(-5px)
  scale(1.05);

  box-shadow:
  0 0 25px rgba(0,255,102,.18);
}

/* ================= RIGHT INFO PANEL ================= */

.modal-info{

  padding:70px 60px;

  display:flex;
  flex-direction:column;
  justify-content:center;

  position:relative;

  background:
  linear-gradient(
    to left,
    rgba(255,255,255,.02),
    transparent
  );
}

/* DIVIDER LINE */

.modal-info::before{

  content:'';

  position:absolute;

  left:0;
  top:8%;

  width:1px;
  height:84%;

  background:
  linear-gradient(
    transparent,
    rgba(255,255,255,.12),
    transparent
  );
}

/* TITLE */

#modalTitle{

  font-size:4.5rem;
  line-height:.88;

  font-weight:900;

  color:white;

  text-transform:uppercase;

  letter-spacing:-3px;

  margin-bottom:18px;
}

/* PRODUCT CODE */

#modalCode{

  color:#00ff66;

  font-size:12px;

  letter-spacing:3px;

  font-family:monospace;
}

/* PRICE */

#modalPrice{

  color:#00ff66;

  font-size:2.7rem;
  font-weight:900;

  margin:35px 0;
}

/* DESCRIPTION */

.modal-desc{

  color:#8d8d8d;

  line-height:1.8;

  font-size:14px;

  margin-bottom:35px;
}

/* SIZE SELECT */

.dark-select{

  width:100%;

  background:#0c0c0c;

  border:1px solid rgba(255,255,255,.08);

  padding:18px;

  border-radius:18px;

  color:white;

  font-size:14px;

  outline:none;

  margin-bottom:25px;

  transition:.4s ease;
}

.dark-select:focus{

  border-color:#00ff66;

  box-shadow:
  0 0 30px rgba(0,255,102,.12);
}

/* ADD TO CART */

#modalAddBtn{

  width:100%;

  padding:18px;

  border:none;

  border-radius:18px;

  background:#00ff66;

  color:black;

  font-weight:900;

  letter-spacing:2px;

  font-size:13px;

  cursor:pointer;

  transition:.4s ease;
}

#modalAddBtn:hover{

  transform:
  translateY(-3px)
  scale(1.02);

  box-shadow:
  0 15px 40px rgba(0,255,102,.25);
}

/* SIZE CHART BUTTON */

.size-chart-btn{

  position:absolute;

  top:30px;
  left:30px;

  z-index:50;

  background:rgba(0,0,0,.55);

  border:1px solid rgba(0,255,102,.25);

  color:#00ff66;

  padding:12px 18px;

  border-radius:14px;

  font-size:11px;

  font-weight:700;

  backdrop-filter:blur(15px);
}

/* CLOSE BUTTON */

.close-modal{

  position:absolute;

  top:22px;
  right:22px;

  width:55px;
  height:55px;

  border-radius:50%;

  border:none;

  background:rgba(255,255,255,.04);

  color:white;

  font-size:28px;

  z-index:100;

  transition:.4s ease;
}

.close-modal:hover{

  background:#00ff66;

  color:black;

  transform:
  rotate(180deg)
  scale(1.05);
}

/* ================= ANIMATIONS ================= */

@keyframes modalPop{

  from{
    opacity:0;
    transform:
    translateY(40px)
    scale(.96);
  }

  to{
    opacity:1;
    transform:
    translateY(0)
    scale(1);
  }

}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

@keyframes pulseGlow{

  0%{
    transform:scale(1);
    opacity:.5;
  }

  50%{
    transform:scale(1.12);
    opacity:1;
  }

  100%{
    transform:scale(1);
    opacity:.5;
  }

}

/* ================= MOBILE ================= */

@media(max-width: 980px){

  .modal-content {
    width: 92%;          /* Leave a little breathing room on the sides */
    max-width: 500px;     /* Prevents it from looking too wide on tablets */
    height: auto;         /* Let the content dictate the height */
    max-height: 90vh;     /* Keeps it from spilling off the screen */
    overflow-y: auto;     /* Enables internal scrolling if content is tall */
    border-radius: 16px;  /* Matches the smooth rounded mobile aesthetic */
  }

  .modal-body {
    display: flex;
    flex-direction: column; /* Clean vertical stack */
  }

  .modal-gallery {
    /* Remove any rigid min-heights that force overlaps */
    height: auto;
    padding: 20px 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .main-modal-img {
    width: 85%;
    max-height: 300px;    /* Keeps the image from consuming the entire screen */
    object-fit: cover;
    border-radius: 12px;
  }

  .thumb-strip {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
  }

  .modal-info {
    padding: 20px;
    text-align: center;   /* Centers text elements to match the image layout */
    display: flex;
    flex-direction: column;
    gap: 12px;            /* Evenly spaces out Title, Price, Select, and Button */
  }

  #modalTitle {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    margin: 0;            /* Reset default margins to prevent layout shifting */
    line-height: 1.1;
  }

  #modalPrice {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .dark-select, .action-btn {
    width: 100%;          /* Full width buttons/dropdowns look much cleaner on mobile */
    box-sizing: border-box;
  }

}

@media(max-width: 600px){
  .main-modal-img {
    max-height: 240px;    /* Scale down the image size slightly more on tiny screens */
  }

  .thumb-strip img {
    width: 50px;
    height: 50px;
  }

  #modalTitle {
    font-size: 1.8rem;
  }
}
/* ══════════════════════════════════════
   HOME DROP TIMER
══════════════════════════════════════ */

.home-drop-timer{
  position:relative;
  margin:120px auto;
  width:calc(100% - 60px);
  max-width:1400px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:#050505;
  padding:100px 40px;
}

.hdt-bg{
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top right,rgba(0,255,76,0.15),transparent 35%),
  radial-gradient(circle at bottom left,rgba(255,255,255,0.04),transparent 30%);
  pointer-events:none;
}

.home-drop-timer::before{
  content:'DROP';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:22vw;
  font-weight:900;
  color:rgba(255,255,255,0.02);
  letter-spacing:-10px;
  white-space:nowrap;
  pointer-events:none;
}

.hdt-content{
  position:relative;
  z-index:2;
  text-align:center;
}

.hdt-tag{
  display:inline-block;
  background:#00ff4c;
  color:black;
  padding:6px 16px;
  font-size:9px;
  font-weight:900;
  letter-spacing:4px;
  margin-bottom:22px;
}

.hdt-title{
  font-size:clamp(60px,10vw,140px);
  line-height:.9;
  font-weight:900;
  letter-spacing:6px;
  margin-bottom:18px;
}

.hdt-title span{
  color:#00ff4c;
}

.hdt-sub{
  color:#f0f0f0;
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:45px;
}

.hdt-grid{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.hdt-box{
  width:140px;
  background:#080808;
  border:1px solid #111;
  padding:26px 10px;
  position:relative;
  overflow:hidden;
}

.hdt-box::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:#00ff4c;
  box-shadow:0 0 12px #00ff4c;
}

.hdt-num{
  display:block;
  font-size:4rem;
  font-weight:900;
  line-height:1;
  color:#00ff4c;
  font-variant-numeric:tabular-nums;
}

.hdt-lbl{
  font-size:9px;
  letter-spacing:3px;
  color:#444;
}

.hdt-btn{
  display:inline-block;
  margin-top:40px;
  background:#00ff4c;
  color:black;
  text-decoration:none;
  padding:16px 34px;
  font-size:10px;
  font-weight:900;
  letter-spacing:3px;
  transition:.3s;
}

.hdt-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 30px rgba(0,255,76,0.2);
}

@media(max-width:768px){

  .home-drop-timer{
    padding:70px 20px;
    width:calc(100% - 24px);
  }

  .hdt-grid{
    gap:10px;
  }

  .hdt-box{
    width:calc(50% - 10px);
    padding:22px 10px;
  }

  .hdt-num{
    font-size:2.7rem;
  }

  .hdt-title{
    letter-spacing:2px;
  }
}
.dcd-lbl {
    font-size: 7px;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}.drop-cd-label {
    font-size: 8px;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.voucher-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  background: linear-gradient(90deg, #0a0a00, #111100, #0a0a00);
  border-bottom: 1px solid rgba(255,204,0,.25);
  padding: 9px 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-decoration: none; cursor: pointer;
  animation: vbSlideIn .6s cubic-bezier(.22,1,.36,1) both;
  transition: background .2s;
}
.voucher-bar:hover { background: #111100; }
@keyframes vbSlideIn { from{transform:translateY(-100%)} to{transform:translateY(0)} }
.vb-tag {
  font-size: 7px; font-weight: 900; letter-spacing: 3px;
  background: #ffcc00; color: black; padding: 2px 9px;
  font-family: 'Poppins', sans-serif;
}
.vb-text {
  font-size: 10px; font-weight: 700; color: #ffcc00;
  letter-spacing: 2px; font-family: 'Poppins', sans-serif;
}
.vb-text span { color: white; }
.vb-arrow {
  font-size: 9px; color: #888; letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
  animation: vbPulse 1.6s ease-in-out infinite;
}
@keyframes vbPulse { 0%,100%{opacity:.4} 50%{opacity:1} }
.vb-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #444; font-size: 18px;
  cursor: pointer; padding: 4px 8px; line-height: 1;
  transition: color .2s;
}
.vb-close:hover { color: #ffcc00; }
.voucher-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 9998;
  display: none; flex-direction: column; align-items: center;
  text-decoration: none;
}
.voucher-bubble.visible {
  display: flex;
  animation: vbBounceIn .7s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes vbBounceIn {
  from { transform: scale(0) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0);    opacity: 1; }
}
.vb-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, #1a1a00, #0a0a00);
  border: 2px solid rgba(255,204,0,.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 22px rgba(255,204,0,.15), 0 0 44px rgba(255,204,0,.06);
  transition: .3s; position: relative;
}
.voucher-bubble:hover .vb-circle {
  border-color: #ffcc00;
  box-shadow: 0 0 30px rgba(255,204,0,.3), 0 0 60px rgba(255,204,0,.1);
  transform: scale(1.06);
}
.vb-circle::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(255,204,0,.15);
  animation: vbRing 2s ease-in-out infinite;
}
@keyframes vbRing { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.12);opacity:.08} }
.vbc-amount { font-size: 13px; font-weight: 900; color: #ffcc00; line-height: 1; font-family: 'Poppins', sans-serif; }
.vbc-free   { font-size: 7px; color: #888; letter-spacing: 2px; margin-top: 1px; font-family: 'Poppins', sans-serif; }
.vb-tag2 {
  background: #ffcc00; color: black;
  font-size: 6px; font-weight: 900; letter-spacing: 2px;
  padding: 2px 9px; margin-top: 5px; white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
/* Force the modal hidden unless explicitly activated */
#productModal.modal-overlay {
  display: none !important;
}

#productModal.modal-overlay.active {
  display: flex !important;
}