/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, sans-serif;
  background: #1a1a1a;
  color: white;
  position: relative;
  z-index: 1;
}
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(var(--scrollOffset, 0px));
  width: 320px;
  height: 320px;
  background: url('images/SWAGGY New Logo + New Highlights.png') no-repeat center center;
  background-size: contain;
  opacity: 0.120;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(100%) contrast(0.9) brightness(1.1);
  transition: transform 0.2s ease-out;
}




/* NAVBAR STYLING */
.navbar {
  background-color: #1a1a1a;
  padding: 1rem;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  width: 100%;
  padding: 0; /* 🔹 reduce vertical padding */
  height: 60px;          /* 🔹 fix a slimmer height */
  line-height: 1;        /* 🔹 remove extra text spacing */
}



/* ✅ Unified SWAGGY logo (used everywhere) */
/* Unified SWAGGY logo style (same as category) */
.logo {
  font-family: 'Lacquer', cursive;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 0 0 4px rgba(255,255,255,0.7), 0 0 8px rgba(255,255,255,0.5);
  transition: text-shadow 0.3s ease;
}
.logo:hover {
  text-shadow: 0 0 12px rgba(255,255,255,1);
}







/* NAV LINKS */
.nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;  /* keeps links grouped in the middle */
  align-items: center;
  gap: 1.2rem;              /* smaller gap, more like categories */
  margin: 0;
  padding: 0;
}


.nav-links a {
  display: inline-block;
  font-family: 'Lacquer', cursive;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px #cccccc,
    0 0 15px #dddddd;
}
.nav-links a:hover {
  transform: scale(1.2); /* 👈 smooth zoom */
}

.nav-links a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: url('https://www.transparenttextures.com/patterns/asfalt-light.png') repeat;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.4s ease;
  z-index: -1;
  filter: blur(12px);
}

.nav-links a:hover::after {
  opacity: 0.3;
  transform: translate(-50%, -50%) scale(1.3);
}




/* ICONS */
/* wider spacing on desktop, tighter but neat on mobile */
.nav-icons {
  display: flex;
  align-items: center; /* keeps baseline alignment */
  gap: 1.5rem;
}


@media (max-width: 600px) {
  .nav-icons {
    gap: 1rem;
  }
}



.icon {
  font-size: 1.5rem;
  color: #fff;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px #888888;
}

.icon:hover {
  color: #00ff99;
  transform: scale(1.15);
  text-shadow:
    0 0 6px #ffffff,
    0 0 12px #ffffff,
    0 0 18px #ffffff;
}


.cart-count {
  position: absolute;
  top: -6px;   /* slightly lower so it doesn’t float away */
  right: -6px; /* closer to the cart icon */
  background: #ff3366;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 3px 6px;
  box-shadow: 0 0 8px rgba(255, 51, 102, 0.6);
  animation: popCount 0.3s ease-in-out;
}

@media (max-width: 600px) {
  .cart-count {
    font-size: 0.65rem;
    padding: 2px 5px;
    top: -5px;
    right: -5px;
  }
}



/* Cart icon styling (emoji 🛒) */
.cart-icon {
  position: relative; /* keep for badge */
  display: flex;       /* ensures proper vertical centering */
  align-items: center;
  justify-content: center;

  height: 28px;        /* same as hamburger visual height */
  line-height: 1;      /* remove extra font padding */
  font-size: 1.4rem;   /* keep your size */
  color: white;
  cursor: pointer;
  text-shadow: 0 0 6px #ffffff, 0 0 12px #ffffff;
  transition: transform 0.3s ease;
  padding: 4px;        /* tap-friendly */
}
cart-badge {
  position: absolute;
  top: -6px; /* manually tuned */
  right: -8px;
}

.cart-icon:hover {
  transform: scale(1.15);
  text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
}
.material-symbols-outlined {
  font-size: 1.4rem;
  color: white;
  text-shadow: 0 0 6px #ffffff, 0 0 12px #ffffff;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}



/* Container for flying money */
.bill-container {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: visible;
}

/* Flying money animation */
.bill {
  position: absolute;
  animation: flyCrazy 1s ease-out forwards;
  opacity: 1;
}

/* Keyframes for fly out */
@keyframes flyCrazy {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) rotate(720deg) scale(1.5);
    opacity: 0;
  }
}


/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE NAVIGATION */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0c0c0c;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    z-index: 999;

    /* Hidden by default */
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1.5, 0.5, 1);
  }

  .nav-links ul {
    flex-direction: column;
    gap: 0.6;
    padding: 1rem;
    width: 100%;
  }

  /* Each link animation */
  .nav-links ul li {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.4s ease;
  }

  /* Menu open state with bounce */
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Links fade in one-by-one when menu is open */
  .nav-links.open ul li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open ul li:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open ul li:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open ul li:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open ul li:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.open ul li:nth-child(5) { transition-delay: 0.25s; }

  .hamburger {
    display: inline-block;
  }
}



/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 70vh;
  background: url('https://images.unsplash.com/photo-1583225577491-01b56ba3e1e5?auto=format&fit=crop&w=1950&q=80') no-repeat center right;
  background-size: cover;
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.4); /* optional dark tint */
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  color: white;
  font-family: 'lacquer', cursive;
}

.hero .tagline {
  font-size: 0.9rem;
  color: #9b5de5;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px #000;
}

.hero-btn {
  padding: 0.75rem 1.8rem;
  background: #9b5de5;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 0 10px #9b5de5;
}
.hero-btn:hover {
  background: #fff;
  color: #000;
  border: 2px solid #9b5de5;
  box-shadow: 0 0 12px black;
}
.hero-btn:focus {
  outline: 2px solid #9b5de5;
  outline-offset: 2px;
}


/* CAROUSEL BASE */
.carousel-container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.carousel {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  justify-content: center;
  align-items: center;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}


.carousel-media {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ARROWS */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: #9b5de5; /* ✅ brand pink */
  color: #000;               /* ✅ black arrow for contrast */
  /* 🔹 no transform scaling */
}

.prev { left: 20px; }
.next { right: 20px; }

/* 📱 Mobile-friendly size */
@media (max-width: 600px) {
  .prev, .next {
    width: 40px;
    height: 40px;
    font-size: 2.2rem;
  }
}



/* DOTS */
.dots {
  position: absolute;
  bottom: 18px;
  width: 100%;
  text-align: center;
  z-index: 6;
}

.dot {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #aaa;   /* lighter grey for default */
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.dot:hover {
  background-color: #9b5de5; /* brand pink on hover */
}
.dot.active {
  background-color: #9b5de5; /* active pink */
  transform: scale(1.3);     /* same animation feel, cleaner */
}
@media (max-width: 600px) {
  .dot {
    width: 16px;
    height: 16px;
    margin: 0 8px;
  }
}


.product-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #fff;
}

.product-info p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.3rem;
}

.product-info span {
  font-size: 1rem;
  font-weight: bold;
  color: #9b5de5;
}

/* 📱 Mobile adjustments for hero overlay */
/* 🔹 Hero overlay text (Desktop / Default) */
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  color: white;
  font-family: 'Lacquer', cursive;
  z-index: 5;
  max-width: 400px;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hero-overlay .tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #9b5de5;
  margin-bottom: 0.4rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-overlay h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;

  background: linear-gradient(180deg, #9b5de5, #9b5de5); /* Solid brand pink */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 8px rgba(255, 78, 221, 0.2);
  letter-spacing: 1.5px;
}

.hero-overlay .hero-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: #9b5de5;
  color: #000;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 10px #9b5de5;
  transition: all 0.3s ease;
}

.hero-overlay .hero-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 12px #fff;
}

/* 🔹 Mobile adjustments */
@media (max-width: 600px) {
  .hero-overlay {
    top: 38%;                     /* lift everything slightly higher */
    left: 6%;                     
    transform: translateY(-38%);  
    max-width: 90%; 
    text-align: left;             
  }

  .hero-overlay .tagline {
    font-size: 0.7rem;               
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
  }

  @media (max-width: 600px) {
  .hero-overlay h1 {
    font-size: 1.4rem;               
    line-height: 1.3;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;

    /* ✅ Solid pink also on mobile */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #9b5de5;  /* Use pink directly */
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
  }
}

  .hero-overlay .hero-btn {
    padding: 0.6rem 1.4rem;          
    font-size: 0.9rem;
    border-radius: 25px;
    margin-top: 0.6rem;    /* ✅ extra gap above button */
  }
}




/* Animated Arrows */
.prev, .next {
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  padding: 0.3rem 1rem;
  cursor: pointer;
  transition: 0.3s;
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}

.prev:hover, .next:hover {
  background-color: #9b5de5;
  color: #000;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Dots styling */
.dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
  z-index: 6;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #777;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

.dot.active {
  background-color: #9b5de5;
  transform: scale(1.3);
}
.categories {
  padding: 4rem 2rem;
  background-color: #111;
  text-align: center;
}

.categories-section {
  padding: 4rem 2rem;
  background-color: #111;
  text-align: center;
}

/* CLEAN CATEGORY SECTION */
.categories-clean {
  padding: 5rem 2rem;
  background-color: #111;
  text-align: center;
}

.categories-title {
  font-size: 2.2rem;
  color: #f5f5f5;
  margin-bottom: 3rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 1px;
}

.categories-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 600px) {
  .categories-wrapper {
    grid-template-columns: repeat(2, 1fr); /* Two columns on small phones */
    gap: 1rem;
  }

  /* after hoodie season put this  */
  .category-tile {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
}

.category-tile {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: visible;
  background-color: #1e1e1e;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  margin: 2px auto 28px;
}



.category-tile::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  transform: scale(0);
  animation: none;
}

.category-tile:hover::before {
  opacity: 1;
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* REPLACE your existing category hover rule with this */
.category-tile.hoodie:hover,
.category-tile.tshirt:hover,
.category-tile.tote:hover,
.category-tile.more:hover {
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.14) inset,  /* inner ring */
    0 0 18px rgba(255,255,255,0.55),         /* outer glow */
    0 0 36px rgba(255,255,255,0.28);         /* wider halo */
  transition: box-shadow 0.3s ease;
}



@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.category-tile:hover {
  transform: scale(1.015); /* tiny lift */
  /* let later rules add the glow */
}

/* Restore desktop hover glow for category tiles */
@media (hover:hover) and (pointer:fine){
  .category-tile:hover{
    transform: scale(1.03); /* subtle lift */
    box-shadow:
      0 0 0 2px rgba(255,255,255,0.14) inset,      /* soft inner ring */
      0 0 18px rgba(255,255,255,0.55),             /* outer glow */
      0 0 36px rgba(255,255,255,0.28);             /* wider halo */
  }
}





.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.category-tile:hover img {
  transform: scale(1.05);
}


.category-tile span {
  position: absolute;
  bottom: -28px;            /* place it just below the circle */
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  font-family: 'Poppins', sans-serif;
  text-shadow: none;
  pointer-events: none;     /* so hover on the circle isn’t blocked */
}


/* FINAL ENHANCED SECTION TITLE */

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Lacquer', cursive;
  color: white;
  text-shadow: 
    0 0 6px black,
    0 0 12px black;
  margin-bottom: 2rem;
  position: relative;
  animation: fadeInSlide 1s ease-in-out;
  letter-spacing: 1px;
}

/* Customize Now flame effect */
/* Customize Now flame effect */
.flame-js {
  position: relative;
  color: #fff; /* keep text white for contrast */
  font-weight: bold;
  text-shadow:
    0 0 8px #9b5de5,
    0 0 15px #9b5de5,
    0 0 25px #9b5de5;
  animation: flameFlicker 0.12s infinite alternate;
}

/* Keyframes – unify glow to purple */
@keyframes flameFlicker {
  0%   { text-shadow: 0 0 6px #9b5de5, 0 0 12px #9b5de5, 0 0 18px #9b5de5; }
  50%  { text-shadow: 0 0 10px #9b5de5, 0 0 20px #9b5de5, 0 0 30px #9b5de5; }
  100% { text-shadow: 0 0 6px #9b5de5, 0 0 12px #9b5de5, 0 0 18px #9b5de5; }
}


/* Main glowing aura */
/* Main glowing aura */
.flame-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(155, 93, 229, 0.45) 0%,   /* main purple core */
    rgba(155, 93, 229, 0.25) 50%,  /* softer purple fade */
    transparent 80%
  );
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(25px);
  animation: flameAuraPulse 0.8s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}



/* Keyframes */
@keyframes sprayFlicker {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%  { opacity: 0.9; transform: translate(-50%, -50%) scale(1.03); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.98); }
}

@keyframes flameAuraPulse {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  to   { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* 🔹 Mobile optimization */
@media (max-width: 768px) {
  .flame-aura {
    width: 140%;
    height: 220%;
    filter: blur(18px); /* reduce heavy blur for mobile */
  }
  .spray-aura {
    width: 150%;
    height: 150%;
    filter: blur(8px);
    opacity: 0.7;
  }
}


.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #888;
  margin: 12px auto 0;
  border-radius: 4px;
  opacity: 0.5;
  animation: underlinePulse 2.8s infinite ease-in-out;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlinePulse {
  0%, 100% { transform: scaleX(1); opacity: 0.4; }
  50% { transform: scaleX(1.25); opacity: 0.8; }
}


.bag-static {
  margin-left: 8px;
  font-size: 1.4rem;
}

.bag-static:hover {
  transform: scale(1.1);
  text-shadow: 0 0 8px #d4af37;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, auto));
  gap: 1.5rem;
  padding: 2rem;
  justify-content: start; /* ✅ Keeps items left-aligned */
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, auto));
    padding: 1rem;
    gap: 1rem;
  }
}


.hoodie-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 10px;
  display: block;
  background-color: transparent;
  border: none;
  text-align: center;
}
/* Limit card size on larger screens */
@media (min-width: 768px) {
  .hoodie-card {
    max-width: 250px; /* or 220px if you want smaller */
    margin: 0 auto;   /* keeps cards centered */
  }
}


/*.hoodie-card:hover {
  transform: scale(1.03);
}*/

.hoodie-card img {
  width: 100%;
  aspect-ratio: 1 / 1; /* ✅ force square like mobile */
  object-fit: cover;   /* ✅ no stretching, just crop */
  display: block;
  transition: transform 0.3s ease;
}


.hoodie-card:hover img {
  transform: scale(1.05);
  opacity: 0.3; /* Makes the image slightly transparent */
}


.hover-container {
  position: relative;
}

.hover-price {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.hoodie-card:hover .hover-price,
.hoodie-card.hovered .hover-price {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}





.product-detail-container {
  background: #222;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}


.product-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.product-info img {
  max-width: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  gap: 1rem;
  color: #f0f0f0; /* matches logo */
}
@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-text {
    padding: 1rem 0;
  }
}

.product-text .price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f0f0f0; /* match swaggy tone */
  text-shadow: 0 0 6px rgba(255,255,255,0.3);
}


/* SWAGGY-styled Add to Cart Button */
.add-to-cart {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: #f0f0f0; /* SWAGGY logo color */
  border: 2px solid #f0f0f0;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.1s ease;
}

/* Hover */
.add-to-cart:hover {
  background-color: rgba(240, 240, 240, 0.1);
  color: #fff;
  transform: scale(1.02);
}

/* Pressed */
.add-to-cart:active {
  background-color: rgba(240, 240, 240, 0.2);
  color: #fff;
  transform: scale(0.98);
}

/* Disabled */
.add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #888;
  color: #888;
}


.color-options {
  display: flex;
  gap: 10px;
  margin: 0.5rem 0 1rem;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 6px #ffffff, 0 0 12px #ffffff;
  border-color: #ffffff;
}

.color-dot.active {
  box-shadow: 0 0 8px #ffffff, 0 0 16px #ffffff;
  border-color: #ffffff;
  animation: whitePulse 1.5s infinite ease-in-out;
}

@keyframes whitePulse {
  0% {
    box-shadow: 0 0 4px #ffffff, 0 0 8px #ffffff;
  }
  50% {
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
  }
  100% {
    box-shadow: 0 0 4px #ffffff, 0 0 8px #ffffff;
  }
}



.back-button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: #f0f0f0;
  border: 2px solid #f0f0f0;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.back-button:hover {
  background: rgba(240,240,240,0.1);
  box-shadow: 0 0 10px rgba(240,240,240,0.4);
}





.money { 
  font-size: 1.5rem; 
  color: #00ff99; 
}


/* === Cart layout fixes === */
.cart-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

#cartFilled {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Each line item */
/* ==== CART ROWS ==== */
#cartItems .cart-row {
  display: grid;
  grid-template-columns: 80px 1fr 110px 100px 28px;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}
#cartItems .cart-row:hover {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
  border-radius: 10px;
}

/* Product image */
#cartItems .cart-row img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(255,255,255,0.15);
}

/* Quantity input */
.qty-input {
  width: 72px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  text-align: center;
}

/* Price & line total */
.price,
.line-total {
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
}

.cart-summary {
  border: 1px solid rgba(255,255,255,0.12); /* slightly stronger border */
  background: rgba(255,255,255,0.03);       /* slightly brighter bg */
  border-radius: 14px;
  padding: 20px;
  max-width: 380px;
  box-shadow: 0 0 12px rgba(255,255,255,0.08);
}

/* Summary title */
.cart-summary h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: bold;
}

/* Subtotal row */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.summary-row span:last-child {
  font-weight: bold;
  font-size: 1.2rem;
  text-shadow: 0 0 6px rgba(255,255,255,0.8); /* white glow for price */
}

/* Buttons inside summary */
.cart-summary button {
  display: inline-block;
  padding: 10px 16px;
  margin-right: 8px;
  border: none;
  border-radius: 8px;
  background: white;
  color: black;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-summary button:hover {
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

.cart-summary button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 📱 Small screen fixes */
@media (max-width: 520px) {
  #cartItems .cart-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "img title"
      "img meta"
      "img price"
      "qty qty"
      "total remove";
    gap: 6px 10px;
    padding: 10px 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 0 8px rgba(255,255,255,0.08);
  }

  #cartItems .cart-row img {
    grid-area: img;
    width: 60px;
    height: 60px;
  }

  #cartItems .cart-row .cart-item-title {
    grid-area: title;
    font-size: 16px;
    text-shadow: 0 0 4px rgba(255,255,255,0.4);
  }

  #cartItems .cart-row .cart-item-meta {
    grid-area: meta;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
  }

  #cartItems .cart-row .price {
    grid-area: price;
    font-size: 15px;
  }

  #cartItems .cart-row .qty-input {
    grid-area: qty;
    width: 100px;
    height: 40px;
  }

  #cartItems .cart-row .line-total {
    grid-area: total;
    font-size: 15px;
  }

  #cartItems .cart-row .remove-btn {
    grid-area: remove;
    justify-self: end;
    width: 36px;
    height: 36px;
  }
}


@media (max-width: 600px) {
  .cart-summary {
    max-width: none;
    width: 100%;
    padding: 16px;
  }
  .cart-summary button {
    display: block;
    width: 100%;
    margin: 6px 0;
  }
}
@media (max-width: 600px) {
  .cart-summary {
    max-width: none;
    width: 100%; /* full width on phones */
    margin-top: 16px; /* spacing above on mobile */
  }
}


@media (min-width: 900px) {
  #cartFilled { grid-template-columns: 1fr 360px; }
}

.add-to-cart.added {
  background: #00ff99;
  color: #000;
  cursor: default;
  opacity: 0.9;
}

@media (max-width: 520px) {
  .qty-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .qty-btn {
    background: #222;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
  }

  .qty-input {
    width: 40px;
    padding: 4px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    border-radius: 6px;
  }
}
@media (max-width: 520px) {
  .qty-input {
    width: 100%;
    max-width: 120px;
    font-size: 1rem;
    padding: 10px;
  }
}
/* Quantity control buttons */
/* Quantity control buttons */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  background: #ffffff;
  border: none;
  padding: 10px 14px; /* bigger tap area */
  border-radius: 8px;
  color: #000;
  font-size: 1.2rem; /* larger icon text */
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.2s ease;
}

.qty-btn:hover {
  background: #ffffff;
}

.qty-btn:active {
  transform: scale(0.92);
}

/* The input box for quantity */
/* Quantity control container */
/* Quantity control container */
.qty-controls {
  display: flex;
  align-items: center; /* vertical centering */
  gap: 6px; /* slightly reduced space */
}

/* Default / Desktop look */
.qty-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 5px 9px; /* smaller tap area on desktop */
  border-radius: 6px;
  font-size: 0.95rem; /* slightly smaller text */
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.2s ease;
  line-height: 1;
}

.qty-btn:hover {
  background: #f0f0f0;
}

.qty-btn:active {
  transform: scale(0.92);
}

.qty-input {
  width: 36px; /* compact desktop */
  text-align: center;
  font-size: 0.95rem;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #000;
}

/* Tablet and mobile */
@media (max-width: 600px) {
  .qty-controls {
    gap: 4px;
  }

  .qty-btn {
    background: #222;
    color: white;
    font-size: 16px;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 6px;
  }

  .qty-btn:hover {
    background: #00ff99; /* SWAGGY brand green */
    color: black;
  }

  .qty-input {
    width: 46px;
    font-size: 16px;
    border: 1px solid #333;
    background: #111;
    color: white;
    padding: 4px;
  }
}


.header .logo {
  font-family: 'Lacquer', sans-serif; /* drippy font */
  font-size: 2rem;
  font-weight: normal;
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
  margin-right: 32px; /* adds space between logo and nav */
  text-shadow: 0 0 4px rgba(255,255,255,0.7), 0 0 8px rgba(255,255,255,0.5); /* softer glow */
  transition: text-shadow 0.3s ease;
}

.header .logo:hover {
  text-shadow: 0 0 12px rgba(255,255,255,1);
}



.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  gap: 16px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.nav a:hover {
  text-shadow: 0 0 6px rgba(255,255,255,0.8);
}

/* Mobile header layout */
@media (max-width: 520px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }
  .nav {
    flex-direction: row;
    gap: 12px;
    margin-top: 6px;
  }
}

/* --- BEST SELLER STYLING --- */
/* Best Seller Cards - Mobile Friendly & Gold Stars */
.best-seller {
  padding: 40px 20px;
  background: #111;
  text-align: center;
}
.best-seller .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #9b5de5;
  margin-bottom: 25px;
}



/* Grid Layout */
.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Card Style - Frameless */
.best-seller-item {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  transition: transform 0.3s ease;
}

.best-seller-item:hover {
  transform: translateY(-5px);
  animation: purplePulse 1.8s infinite ease-in-out; /* 👈 change name */
}


/* Gold pulse animation */
/* Purple pulse animation */
@keyframes purplePulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(155, 93, 229, 0.4); /* #9b5de5 */
  }
  50% {
    box-shadow: 0 0 20px rgba(155, 93, 229, 0.7); /* #9b5de5 */
  }
}


/* Image */
.best-seller {
  padding: 40px 20px;
  background: #111;
  text-align: center;
}



/* Grid Layout */
.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Card Style - Frameless */
.best-seller-item {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.best-seller-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Image */
.best-seller-item img {
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  background: #000;
  padding: 10px;
  border-bottom: 1px solid #333;
  transition: transform 0.4s ease; /* Smooth zoom */
}

.best-seller-item:hover img {
  transform: scale(1.05); /* Slight zoom effect */
}

/* Info Section */
.best-seller-item .info {
  padding: 18px 12px;
}

.best-seller-item h3 {
  font-size: 1.15rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}


/* Price */
.best-seller-item p {
  font-size: 1rem;
  color:  #9b5de5;
  font-weight: bold;
  margin-bottom: 14px;
}

/* Actions */
.best-seller-item .actions {
  display: flex;
  justify-content: center;
  padding: 10px;
  background: #222;
}

.best-seller-item .actions a {
  color:  #9b5de5;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.best-seller-item .actions a:hover {
  color:  #9b5de5;
}

/* Mobile Friendly */
@media (max-width: 480px) {
  .best-seller-item img {
    max-height: 180px;
  }
  .best-seller-item h3 {
    font-size: 1rem;
  }
  .best-seller-item p {
    font-size: 0.9rem;
  }
}

/* === SIZE OPTIONS === */
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.size-option {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  padding: 8px 12px;
  border: 2px solid white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Active size with white glow */
.size-option.active {
  background-color: white;
  color: black;
  box-shadow: 0 0 10px white;
}

/* Hover effect for desktop */
.size-option:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Mobile-friendly sizes */
@media (max-width: 600px) {
  .size-option.active {
  background-color: white;
  color: black; /* <-- This makes letters black */
  box-shadow: 0 0 10px white;
}
}

/* === COLOR DOTS === */
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Active color with white glow */
.color-dot.active {
  box-shadow: 0 0 8px white, 0 0 15px rgba(255, 255, 255, 0.8);
  transform: scale(1.15);
}

/* Hover for desktop */
.color-dot:hover {
  transform: scale(1.1);
}

/* Mobile-friendly dots */
@media (max-width: 600px) {
  .color-dot {
    width: 36px;
    height: 36px;
  }
}
/* Override old brand color for size buttons */
.size-option {
  color: white !important; /* default text color */
}

.size-option.active {
  background-color: white !important;
  color: black !important; /* active text color */
  box-shadow: 0 0 10px white;
}


/* Mobile-friendly alert modal */
.alert-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.alert-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  font-size: 1rem;
}

.alert-content p {
  margin-bottom: 15px;
  color: black;
}

.alert-content button {
  background: #00ff99;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

/* Bigger touch-friendly color dots */
.color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-block;
}

.color-dot.active {
  border-color: transparent; /* no green border */
  box-shadow: none;           /* no glow */
}


/* Bigger size buttons */
.size-option {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid white;
  border-radius: 6px;
  margin: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.color-dot.active,
.size-option.active {
  border-color: transparent; /* remove frame */
  box-shadow: none;           /* remove glow */
}

/* 🔹 T-shirt category filter menu */
/* Base Styles */
/* 🔹 Category Filters (Improved) */
.category-filters {
  margin: 10px;
  position: relative;
  z-index: 5;
}

.filter-toggle {
  background: #222;
  color: #fff;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.filter-toggle:hover {
  background: #333;
  transform: scale(1.05);
}

.filter-menu {
  display: none;
  flex-direction: column;
  margin-top: 6px;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.filter-menu.open {
  display: flex;
}

.filter-menu button {
  background: #2a2a2a;
  color: #eee;
  padding: 12px;
  border: none;
  text-align: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}
/* Selected/Active filter button */
.filter-menu button.active {
  background: #555;   /* slightly lighter/darker than normal */
  color: #fff;
  font-weight: bold;
  border: 1px solid #777;
}


.filter-menu button:hover {
  background: #444;
  color: #ffffff; /* SWAGGY brand glow color */
}

/* Match filter buttons height to category tiles */
.filter-menu button,
.filter-toggle {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Submenu styling */
.has-submenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: transform 0.3s ease;
}

.has-submenu.open .arrow {
  transform: rotate(90deg);
}

.submenu {
  display: none;
  background: #222;
}

.submenu.open {
  display: block;
}

.submenu button {
  background: #2a2a2a;
  padding-left: 20px;
  font-size: 0.9rem;
}

/* 🔹 Category Filters (Final Improved Version) */
.category-filters {
  margin: 10px;
  position: relative;
  z-index: 5;
}

/* Toggle button (mobile only) */
.filter-toggle {
  background: #222;
  color: #fff;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
}

/* Dropdown menu (mobile default) */
.filter-menu {
  display: none;
  flex-direction: column;
  margin-top: 6px;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.filter-menu.open {
  display: flex;
}

.filter-menu button {
  background: #2a2a2a;
  color: #eee;
  padding: 10px;
  border: none;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Hover and Active states */
.filter-menu button:hover {
  background: #444;
}
.filter-menu button.active {
  background: #ffffff;   /* SWAGGY brand glow */
  color: #111;
  font-weight: bold;
}

/* Match filter buttons height to category tiles */
.filter-menu button,
.filter-toggle {
  min-height: 44px; /* ✅ smaller for mobile */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .filter-toggle {
    display: none; /* hide toggle on desktop */
  }

  .filter-menu {
    display: flex !important;
    flex-direction: row;
    background: transparent;
    margin-top: 0;
    gap: 6px;
    box-shadow: none;
  }

  .filter-menu button {
    background: #222;
    border-radius: 4px;
    padding: 8px 12px;
  }

  .filter-menu button:hover {
    background: #444;
  }

  /* Active state on desktop */
  .filter-menu button.active {
    background: #ffffff;
    color: #111;
    font-weight: bold;
  }
}


/* Base Category Tile size */
.category-tile {
  width: 150px;
  height: 150px;
}

/* Locked Category Tile (with glow-pulse animation & click disabled) */
.category-tile.locked {
  position: relative;
  overflow: hidden;
  cursor: not-allowed;
  pointer-events: none; /* ✅ Prevents clicking */
}

.category-tile.locked img {
  filter: blur(2px) brightness(0.7);
}

.category-tile.locked::after {
  content: "Coming Soon";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  backdrop-filter: blur(4px);
  animation: glow-pulse 1.8s infinite ease-in-out;
}

/* Glow Pulse Animation */
@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
  }
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .category-tile {
    width: 100px;
    height: 100px;
  }

  .category-tile.locked::after {
    font-size: 1rem;
    padding: 4px 10px;
  }

  .category-tile.locked span {
    font-size: 0.9rem;
  }
}

.hover-container {
  position: relative;
}

.hover-price {
  position: absolute;
  z-index: 2; /* force above image */
}
.hover-container img {
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}





/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #ccc;
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-family: 'lacquer';
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-logo h2 {
  font-family: 'Lacquer', cursive;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.footer-links a {
  margin: 0 0.8rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #9b5de5;
}

/* Footer social icons: keep original colors & remove underlines */
.footer-social { display:flex; gap:18px; align-items:center; }

.footer-social a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:0;                 /* kills the purple underline baseline */
  text-decoration:none !important;
}

.footer-social a img{
  width:30px;height:30px;
  filter:none!important;-webkit-filter:none!important;
  mix-blend-mode:normal;
  transition:transform .2s ease;
}
.footer-social a{ text-decoration:none!important; line-height:0; }
.footer-social a:hover img{ transform:scale(1.15); } /* zoom only */


.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  border-top: 1px solid #333;
  margin-top: 1.5rem;
  color: #888;
}

/* 📱 Responsive footer */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin: 1rem 0;
  }
}



/* ===== Offer Popup ===== */
.offer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

.offer-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.offer-content {
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  animation: popupScale 0.4s ease;
}

.offer-content h3 {
  color: #9b5de5; /* brand purple */
  margin-bottom: 0.5rem;
}

.offer-content p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.offer-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #9b5de5;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.offer-btn:hover {
  background: #fff;
  color: #000;
}

.close-offer {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s ease;
}

.close-offer:hover {
  color: #9b5de5;
}

@keyframes popupScale {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.voucher-section {
  margin-top: 1rem;
  text-align: center;
}

.voucher-section input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 60%;
  max-width: 200px;
}

.voucher-section button {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  background: #9b5de5;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.voucher-section button:hover {
  background: #fff;
  color: #000;
  border: 1px solid #9b5de5;
}

.voucher-msg {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #9b5de5;
}

.footer-credit {
  font-size: 0.7rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
}



