:root {
  /* DARK MODE(default) */
  --bg: #0b0b0b;
  --card: #111;
  --text: #ffffff;
  --subtext: #aaaaaa;
  --accent: #d4ff00;
  --accent1: #a2ff00;
  --accent2: #89c725;
  --border: #222;
  --outer-bg: #050505;
  --noise-opacity: 0.1;
}

.light-mode {
  --bg: #ffffff;
  --card: #f5f5f5;
  --text: #111111;
  --subtext: #555555;
  --accent: #7c3aed;
  --accent1: #7800ff;
  --accent2: #5521c0;
  --border: #dddddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--outer-bg);
  color: var(--text);
}

a {
  color: inherit;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("../images/noisy.png");
  opacity: var(--noise-opacity);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.site-wrap {
  max-width: 1600px;
  margin: 20px auto;
  border-radius: 20px;
  overflow: visible;
  background: var(--bg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 80px rgba(0, 0, 0, 0.6);
}

.products-page,
.featured-collection {
  max-width: 100%;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  z-index: 100;
  isolation: isolate;
    opacity: 1 !important;

  pointer-events: auto !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-weight: bold;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: var(--subtext);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  opacity: 0.6;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px clamp(40px, 8vw, 160px);
  gap: 40px;
  position: relative;
  min-height: 50vh;
  background: url('../images/heroimage.png') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(212,255,0,0.10), transparent 55%),
    linear-gradient(to right, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* grid */
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    /* glow */
    radial-gradient(circle at 75% 35%, rgba(212, 255, 0, 0.05), transparent 55%);
  background-size:
    80px 80px,
    80px 80px,
    auto;
  opacity: 0.45;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 45%, rgba(0,0,0,0.4) 60%, transparent 75%);
  mask-image: linear-gradient(to right, black 0%, black 45%, rgba(0,0,0,0.4) 60%, transparent 75%);
}

.hero,
.hero::before,
.hero::after {
  z-index: 0;
}

.hero-left {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.tag {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-top: 5px;
  margin-left: 5px;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--accent);
}

.sub {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin-left: 5px;
  margin-top: 2px;
  text-transform: uppercase;
  color: var(--subtext);
  max-width: 420px;
  line-height: 0.9;
}

.cta {
  margin-top: 25px;
  background: var(--accent);
  color: black;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
}

.hero-left::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.08;
  top: 20%;
  left: 10%;
  z-index: 0;
}

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 40px; /* adds breathing room from edge */
  z-index: 2;
}

.hero-image {
  position: relative;
  width: clamp(380px, 36vw, 900px); /* slightly smaller */
  transform: translateY(30px); /* less drop so it sits nicer */
  right: 65px; /* pull it slightly inward from the edge */
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.hero-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(212, 255, 0, 0.12) 0%,
    rgba(212, 255, 0, 0.06) 40%,
    transparent 70%
  );
  opacity: 0.3;
  filter: blur(100px);
  bottom: 10%;
  right: 10%;
  z-index: 0;
}
/* FEATURED */
.featured {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  gap: 40px;
  position: relative;
  background: radial-gradient(circle at 30% 50%, rgba(212,255,0,0.28), transparent 60%),
              linear-gradient(180deg, rgba(212,255,0,0.18), rgba(0,0,0,0.25));
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(212,255,0,0.2), transparent 55%);
  background-size: 80px 80px, 80px 80px, auto;
  opacity: 0.5;
  z-index: 0;
}

.featured-corner {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  filter: blur(60px);
  opacity: 0.2;
}

.featured-left {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.big-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 10vw, 7rem);
  font-weight: bold;
  min-width: 700px;
  line-height: 0.85;
  letter-spacing: -3px;
  transform: uppercase;
}

.highlight {
  font-family: "Poppins", sans-serif;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent);
}

.big-title .line {
  font-family: "Poppins", sans-serif;
  display: block;
  font-weight: 800;
  color: var(--subtext);
}

.big-title .top {
  font-family: "Poppins", sans-serif;
  display: block;
  font-weight: 800;
  color: var(--text);
}

.big-title .soft {
  color: #aaff55;
}

.big-title .dot {
  color: var(--accent);
}

.featured-left p {
  color: var(--subtext);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* PRODUCTS */
.products {
  padding: 80px clamp(40px, 8vw, 160px);
}

.products-page {
  padding: 80px clamp(40px, 8vw, 160px);
  width: 100%;
}

.products-header {
  margin-bottom: 50px;
  width: 100%;
}

.products-header h2 a {
  text-decoration: none;
}

.products-header:hover i {
  color: var(--accent);
  cursor: pointer;
  transform: translateX(15px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}



/* --- SEARCH --- */
.search {
  position: relative;
  display: flex;
  align-items: center;
}
#search-input {
  width: 0;
  opacity: 0;
  padding: 8px 0;
  margin-left: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  color: var(--text);
  outline: none;
  transition: all 0.3s ease;
}
.search.active #search-input {
  width: 180px;
  opacity: 1;
  padding: 8px 12px;
  margin-left: 10px;
}
#search-input::placeholder {
  color: var(--subtext);
}

.featured-right {
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.featured-image {
  position: relative;
  width: 420px;
  height: 420px;
  transform: translateX(0);
}
.featured-image::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: var(--accent);
  filter: blur(80px);
  opacity: 0.35;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.featured-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 0.4s ease,
    transform 0.3s ease;
  z-index: 1;
}
.img-secondary {
  opacity: 0;
}
.featured-image:hover .img-primary {
  opacity: 0;
}
.featured-image:hover .img-secondary {
  opacity: 1;
}
.featured-image:hover img {
  transform: scale(1.05);
}

/* --- PRODUCT CARDS (POLISH) --- */
.product-card {
  position: relative;
  border: 1px solid transparent;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.product-card p {
  color: var(--accent);
  font-weight: 500;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at top, var(--accent), transparent 70%);
  opacity: 0;
  transition: 0.3s;
}
.product-card:hover::before {
  opacity: 0.15;
}

.product-image {
  position: relative;
  border-radius: 16px;
  margin-bottom: 20px;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05),
    transparent 70%
  );
  overflow: hidden;
  padding: 10px;
  pointer-events: none;
}
.product-image::before {
  background: var(--accent);

  filter: blur(60px);

  opacity: 1;
}
.product-image img {
  position: relative;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  z-index: 1;
  transition: 0.3s ease;
  transform: scale(1);
}
.product-card:hover .product-image::before {
  opacity: 0.4;
}
.product-card:hover .product-image img {
  transform: scale(1.15) translateY(-5px);
}

.product-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.price {
  color: var(--subtext);
  margin-bottom: 20px;
  font-size: 16px;
}
.product-btn {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: none;
  background: var(--accent);
  color: black;
  cursor: pointer;
  font-weight: 500;
  margin-top: auto;
}

/* --- ICONS --- */
.icon-btn i {
  font-size: 18px;
  line-height: 1;
}
.icon-btn:hover i {
  color: var(--accent);
}

/* PRODUCT PAGE */
/* PRODUCT PAGE */
.product-page {
  padding: 200px clamp(60px, 10vw, 200px) 120px;
  position: relative;
  display: flex;
  justify-content: center;
}

.product-header {
  position: absolute;
  top: 40px;
  left: clamp(50px, 5vw, 150px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.back-btn {
  background: none;
  border: none;
  color: var(--subtext);
  font-size: 20px;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
}

.back-btn:hover {
  color: var(--accent);
  transform: translateX(-4px);
}

.breadcrumb {
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: var(--subtext);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--subtext);
  text-decoration: none;
  transition: 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb .sep {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumb .current {
  color: var(--text);
  opacity: 0.85;
  font-weight: 500;
}

.product-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212,255,0,0.05), transparent 50%);
  pointer-events: none;
}

.product-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 120px minmax(500px, 1fr) 580px;
  gap: 80px;
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
}

.product-gallery {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
}


.main-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  min-height: 650px;
}

.main-image::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,255,0,0.15), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08), transparent 60%);
  opacity: 0.2;
}

.main-image img {
  width: 100%;
  max-width: none;
  height: auto;
}

.thumbnail-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 6px;
}

.thumb {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
  background: rgba(255,255,255,0.02);
  padding: 6px;
}

.thumb:hover {
  opacity: 1;
  border-color: var(--accent);
}

.thumb.active {
  opacity: 1;
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px rgba(212,255,0,0.4);
}

/* INFO */
.product-info {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 60px;
  gap: 22px;
}

.product-title {
  font-size: 3.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -1px;
  line-height: 1.05;
}

.product-price {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(212,255,0,0.3);
}

.variant-group {
  margin-bottom: 25px;
}

.variant-label {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 10px;
  display: block;
}

/* COLOUR SWATCHES (bigger, cleaner) */
.variant-colors {
  display: flex;
  gap: 12px;
}

.variant-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.25s ease;
}

.variant-color:hover {
  transform: scale(1.1);
  border-color: var(--accent);
}

.variant-color.active {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(212,255,0,0.4);
}

/* SIZE BUTTONS (Fourthwall style) */
.variant-sizes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.variant-size {
  min-width: 52px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  transition: all 0.25s ease;
}

.variant-size:hover {
  border-color: var(--accent);
}

.variant-size.active {
  background: var(--accent);
  color: black;
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(212,255,0,0.4);
}

/* OPTIONS */
.product-options label {
  display: block;
  margin-bottom: 10px;
  color: var(--subtext);
}

.option-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.option-btn {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.option-btn:hover {
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 12px rgba(212,255,0,0.2);
}

.option-btn.active {
  background: var(--accent);
  color: black;
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(212,255,0,0.45);
}

/* QUANTITY */
.quantity {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

/* CTA */
.add-to-cart {
  width: 100%;
  padding: 18px;
  border-radius: 10px;
  background: var(--accent);
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(212,255,0,0.25);
  margin-top: 10px;
}

.buy-secondary {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}

.buy-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212,255,0,0.35);
}

/* ACCORDION */
.accordion {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  cursor: pointer;
}


.accordion-header {
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  color: var(--subtext);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.accordion:hover .accordion-header {
  color: var(--text);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--subtext);
  margin-top: 0;
}

.accordion.active .accordion-content {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.accordion-header::after {
  content: "+";
  transition: 0.2s;
}

.accordion.active .accordion-header::after {
  content: "–";
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--subtext);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--subtext);
  text-decoration: none;
  transition: 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb .sep {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumb .current {
  color: var(--text);
  opacity: 0.8;
}
.cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--card);
  border-left: 1px solid var(--border);
  padding: 20px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  background: rgba(15, 15, 15, 0.98);

  /* animation */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cart-panel.open {
  right: 0;
  transform: translateX(0);
  opacity: 1;
}
/* CART ITEMS */
.cart-items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.cart-item-info p {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
}

/* QUANTITY */
.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  border-radius: 6px;
}

.cart-qty span {
  font-size: 13px;
}
.cart-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.checkout-btn {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: var(--accent);
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.checkout-btn:hover {
  background: var(--accent1);
  transform: translateY(-1px);
}

.cart-empty {
  opacity: 0;
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* FLOATING CART BUTTON */
.floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.floating-cart.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cart i {
  font-size: 22px;
}

.floating-cart:hover {
  background: var(--accent1);
  transform: translateY(-2px);
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}

.cart-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.product-category {
  margin-bottom: 60px;
  width: 100%;
}

.product-category .product-grid {
  width: 100%;
}

.category-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text);
  position: relative;
}

.category-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
}

/* =========================
   STORE LAYOUT (REFINED)
========================= */
.store {
  padding: 100px clamp(40px, 8vw, 160px);
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.store::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212,255,0,0.05), transparent 50%);
  pointer-events: none;
}

.store-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* SIDEBAR */
.store-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
  padding-right: 20px;
}

.store-sidebar h3 {
  margin-top: 30px; /* add spacing between sections */
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--subtext);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.store-sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}

/* spacing between sidebar sections */
.filter-group {
  margin-bottom: 30px;
}

.store-sidebar li {
  cursor: pointer;
  color: var(--text);
  opacity: 0.6;
  transition: 0.25s ease;
  font-size: 15px;
}

.store-sidebar li:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(6px);
}

/* ACTIVE STATE */
.store-sidebar li.active {
  opacity: 1;
  color: var(--accent);
  font-weight: 500;
  transform: translateX(6px);
  position: relative;
}

.store-sidebar li.active::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  border-radius: 2px;
  background: var(--accent);
}

/* HOVER FEEDBACK (SUBTLE) */
.store-sidebar li {
  padding-left: 6px;
}

.store-sidebar li:active {
  transform: translateX(4px) scale(0.98);
}

/* GRID POLISH */
.store-grid {
  transition: 0.3s ease;
}

/* CARD MICRO-INTERACTION */
.store-grid .product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-grid .product-card:active {
  transform: translateY(-2px) scale(0.985);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* IMAGE HOVER SOFTEN */
.store-grid .product-card:hover .product-image img {
  transform: scale(1.06);
}

/* TITLE HOVER */
.store-grid .product-card h3 {
  transition: 0.2s ease;
}

.store-grid .product-card:hover h3 {
  color: var(--accent);
}

/* GRID */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

/* CARD STYLE (STORE VERSION) */
.store-grid .product-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 20px;
  min-height: 420px;
  backdrop-filter: blur(6px);
}

.store-grid .product-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* IMAGE */
.store-grid .product-image {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  border-radius: 16px;
  margin-bottom: 15px;
  position: relative;
  isolation: isolate;
  perspective: 800px;
}

.store-grid .product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.08), transparent 60%);
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.store-grid .product-card:hover .product-image::after {
  opacity: 0.4;
}

.store-grid .product-image img {
  transition: opacity 0.3s ease;
}

.store-grid .product-card:hover .product-image img {
  opacity: 0.95;
}

/* TEXT */
.store-grid .product-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.store-grid .product-card .price {
  color: var(--accent);
  font-size: 15px;
}

/* =========================
   STORE TOPBAR + FILTER UI
========================= */
.store-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.store-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* allow controls to align top */
  width: 100%;
  gap: 20px;
}

.store-topbar h2 {
  font-size: 28px;
  margin-bottom: 4px;
}

.store-topbar p {
  color: var(--subtext);
  font-size: 14px;
}




.store-controls button {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.25s ease;
}

.store-controls button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================
   SIDEBAR ENHANCEMENTS
========================= */
.store-sidebar ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-sidebar ul li span {
  font-size: 13px;
  color: var(--subtext);
}

.filters-title {
  margin-top: 40px;
}

.filter-group p {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 10px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-options span {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-options span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.reset-btn {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: 0.25s ease;
}

.reset-btn:hover {
  background: var(--accent);
  color: black;
}

/* =========================
   PRODUCT COLOR SWATCHES (LUXURY)
========================= */
.product-colors, .swatches {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  position: relative;
  z-index: 5;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
  border: 1px solid rgba(255,255,255,0.15);
}

/* subtle outer ring */
.color-swatch::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  opacity: 0;
  transition: 0.25s ease;
}

/* hover */
.color-swatch:hover {
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.color-swatch:hover::before {
  opacity: 1;
}

/* active */
.color-swatch.active {
  transform: scale(1.2);
  border: 2px solid var(--accent);
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.1),
    0 0 14px rgba(212,255,0,0.45);
}

.color-swatch.active::before {
  opacity: 1;
  border-color: var(--accent);
}

/* color definitions */
.color-swatch.black {
  background: radial-gradient(circle at 30% 30%, #222, #000);
}

.color-swatch.white {
  background: radial-gradient(circle at 30% 30%, #fff, #ddd);
  border: 1px solid rgba(255,255,255,0.4);
}

.color-swatch.green {
  background: radial-gradient(circle at 30% 30%, #4cff7a, #1f6d3b);
}

/* optional micro-glow on hover */
.color-swatch.black:hover {
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

.color-swatch.white:hover {
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
}

.color-swatch.green:hover {
  box-shadow: 0 0 12px rgba(80,255,140,0.6);
}


/* === FIX: dynamic product images === */
.product-image-wrapper {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 15px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  overflow: hidden;
}

.product-image-wrapper img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transition: transform 0.35s ease, opacity 0.25s ease, filter 0.3s ease;
  will-change: transform, opacity;
}

.store-grid .product-card:hover .product-image-wrapper img {
  transform: scale(1.08) translateY(-2px);
  filter: brightness(1.05);
}

/* === FIX: swatches alignment === */
.swatches {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}

/* === FIX: transition compatibility === */
.store-grid .product-image img,
.product-image-wrapper img {
  transition: opacity 0.3s ease;
}

.product-card {
  position: relative;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* === PREMIUM CARD GLOW === */

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::after {
  opacity: 1;
}

/* === LOADING SKELETON === */
.skeleton {
  pointer-events: none;
}

.skeleton-image {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-text {
  height: 12px;
  border-radius: 6px;
  margin-top: 10px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-text.short {
  width: 60%;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}


/* === LOGO LOADING OVERLAY === */
.logo-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  background: var(--outer-bg);
  z-index: 999999;
  transition: opacity 0.5s ease;
}

.logo-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.logo-loader img {
  width: 120px;
  height: auto;
  animation: logoPulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(212,255,0,0.5));
  position: relative;
  z-index: 2;
}

.logo-loader::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212,255,0,0.3), transparent 70%);
  filter: blur(100px);
  opacity: 0.65;
  animation: glowPulse 2.5s ease-in-out infinite;
}

.logo-loader p {
  font-size: 13px;
  color: var(--subtext);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeText 1.6s ease-in-out infinite;
}

@keyframes fadeText {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

@keyframes logoPulse {
  0% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }
}

@keyframes glowPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.4;
    transform: scale(0.9);
  }
}


.logo-loader {
  z-index: 999999;
}

.logo img {
  width: 48px;
  height: auto;
}

.logo span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.logo {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo.show {
  opacity: 1;
}

.logo-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  pointer-events: none;
  opacity: 0;
}
body.loading .nav {
  opacity: 0;
  pointer-events: none;
}


.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(10,10,10,0.95));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  z-index: 9999;
  display: none;
  max-height: 320px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  padding: 6px;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
}

.search-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle at top, rgba(212,255,0,0.15), transparent 70%);
  opacity: 0;
  transition: 0.25s ease;
}

.search-item:hover {
  transform: translateX(6px);
}

.search-item:hover::after {
  opacity: 0.25;
}

.search-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  padding: 6px;
}

.search-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.search-item span {
  font-size: 13px;
  color: var(--accent);
  opacity: 0.9;
}

/* subtle divider between items */
.search-item + .search-item {
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* scrollbar styling */
.search-dropdown::-webkit-scrollbar {
  width: 6px;
}

.search-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.search-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

.thumbnail-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;

  opacity: 0.5;
  transform: scale(0.95);

  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}

.thumb:hover {
  opacity: 0.9;
  transform: scale(1);
  border-color: rgba(212,255,0,0.5);
}

.thumb.active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(212,255,0,0.3);
}

.add-to-cart {
  position: relative;
  overflow: hidden;
}

.add-to-cart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.add-to-cart:hover::after {
  opacity: 1;
}

.variant-color {
  box-shadow: 0 0 0 transparent;
}

.variant-color:hover {
  box-shadow: 0 0 12px rgba(212,255,0,0.4);
}

.variant-size:hover {
  transform: translateY(-2px);
}

.product-page {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.back-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.back-inline-btn:hover {
  color: #c6ff00;
}

.thumbnail-row {
  display: flex;
  flex-direction: column;
  gap: 10px;

  max-height: 500px; /* adjust to match your layout */
  overflow-y: auto;
  padding-right: 4px; /* space for scrollbar */

  scrollbar-width: thin; /* Firefox */
}

.thumbnail-row::-webkit-scrollbar {
  width: 6px;
}

.thumbnail-row::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
}

.image-zoom {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.image-zoom img {
  width: 100%;
  transition: transform 0.2s ease;
}

.image-zoom.zoomed img {
  transform: scale(2); /* zoom strength */
  cursor: zoom-out;
}

.product-accordions {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.accordion {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  cursor: pointer;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.8;
}

.accordion-header span {
  transition: transform 0.2s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.25s ease;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0;
}

.accordion.open .accordion-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

.accordion.open .accordion-header span {
  transform: rotate(45deg);
}


/* =========================
   CUSTOM FILTER DROPDOWNS
========================= */


.dropdown-trigger {
  display: inline-flex; /* key fix */
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  width: auto;
  min-width: 140px;
}


.dropdown-trigger:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.dropdown-trigger.active {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(212,255,0,0.25);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  /* 🔥 KEY FIXES */
  left: 0;
  width: max-content;
  min-width: 220px;
  max-width: 320px;
  background: linear-gradient(145deg, rgba(20,20,20,0.98), rgba(10,10,10,0.98));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  z-index: 99999;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.filter-dropdown.open .dropdown-menu {
  display: flex;
}

.store-topbar,
.store-controls,
.store-layout {
  overflow: visible;
}

.dropdown-option {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;

  font-size: 13px;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-option:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}

.dropdown-option.active {
  background: rgba(212,255,0,0.15);
  color: var(--accent);
}

/* colour dot inside dropdown */
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}

/* scrollbar styling */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.25);
}




/* DEBUG FIX: ensure nothing blocks clicks */
.filter-dropdown,
.dropdown-menu {
  pointer-events: auto;
}



.store,
.store-content {
  overflow: visible;
}

.filter-dropdown {
  position: relative;
  z-index: 100;
   flex: 0 0 auto;
}


/* Store controls: single clean version */
.store-controls {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* 🔥 FIX: stop buttons stacking due to inherited width */
.store-controls .filter-dropdown {
  display: inline-block;
}

.store-controls > * {
  flex: 0 0 auto;
}

/* CART BUTTON */
#cart-btn {
  position: relative;
}

/* CART COUNT BADGE */
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;

  background: #c6ff00; /* your neon green */
  color: #000;

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

  width: 18px;
  height: 18px;

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

  border-radius: 50%;

  box-shadow: 0 0 8px rgba(198, 255, 0, 0.6);
}

.price-note {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 4px;
}

.currency-switcher button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;

  width: 44px;
  height: 44px;

  border-radius: 10px;
  cursor: pointer;

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

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

  transition: all 0.25s ease;
}

.currency-switcher button:hover {
  background: rgba(163, 255, 0, 0.1);
  border-color: #a3ff00;
  color: #a3ff00;

  transform: translateY(-2px);
}

.currency-switcher button.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);

}

.currency-switcher {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.price {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.price.updating {
  opacity: 0;
  transform: translateY(4px);
}

.dropdown-option.active {
  background: rgba(163, 255, 0, 0.1);
  border-radius: 8px;
}

/* =========================
   CART OVERLAY (PREMIUM UX)
========================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.cart-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-item {
  transition: all 0.25s ease;
}

.cart-item-enter {
  opacity: 0;
  transform: translateY(10px);
}

.cart-item-exit {
  opacity: 0;
  transform: translateX(40px);
}
 
.collection-list {
  margin-top: 5px;
}

.filter-group:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 20px;
}