/* ─── Satoshi Font Setup ─────────────────────────────────────────── */
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.otf") format("opentype"),
       url("./fonts/Satoshi-Regular.ttf") format("truetype"),
       url("./fonts/Satoshi-Regular.woff") format("woff"),
       url("./fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Medium.otf") format("opentype"),
       url("./fonts/Satoshi-Medium.ttf") format("truetype"),
       url("./fonts/Satoshi-Medium.woff") format("woff"),
       url("./fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Bold.otf") format("opentype"),
       url("./fonts/Satoshi-Bold.ttf") format("truetype"),
       url("./fonts/Satoshi-Bold.woff") format("woff"),
       url("./fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Black.otf") format("opentype"),
       url("./fonts/Satoshi-Black.ttf") format("truetype"),
       url("./fonts/Satoshi-Black.woff") format("woff"),
       url("./fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}







html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}



/* ─── Font-face Setup stays the same ─── */

/* ─── Base Styles ───────────────────────────────────────────── */
body {
  margin: 0;
  padding: 0;
  font-family: "Satoshi", sans-serif;
  background-color: #ffffff;
}

main.main-layout {
  display: flex;
  gap: 40px;
  padding: 40px;
  align-items: flex-start;
}








/* ───── FOOTER STYLES ────────────────────────────────────────────── */
.minimal-footer {
  background: linear-gradient(
    135deg,
    rgba(83, 202, 252, 0.25),
    rgba(255, 255, 255, 0.1),
    rgba(83, 202, 252, 0.2)
  );

  backdrop-filter: blur(48px) saturate(250%);
  -webkit-backdrop-filter: blur(48px) saturate(250%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 18px 64px rgba(83, 202, 252, 0.25),
    inset 0 0 60px rgba(255, 255, 255, 0.08);

  padding: 0.4rem 0;
  width: 100%;
  min-height: 56px;

  position: fixed;      /* ✅ Locks it in place */
  top: 0;               /* ✅ Sticks to top instead */
  left: 0;
  z-index: 9998;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}




.footer-inner {
  display: flex;
  justify-content: space-between; /* 👈 Clean two-sided layout */
  align-items: center;
  padding: 0 4rem;
  height: 56px;
  position: relative;
}


.footer-logo {
  height: 48px;         /* ⬆️ Taller logo */
  width: auto;
  display: block;
  margin-left: 2rem;    /* ⬅️ Narrower spacing */
  margin-top: 16px;     /* ⬇️ Slightly reduced vertical offset */
}
.footer-right {
  position: absolute;
  right: 4rem; /* 👈 Shifted closer to center */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: #000000;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;        /* ⬆️ Upgraded to Black */
  font-style: italic;      /* ⬅️ Now italic */
  transition: color 0.3s ease;
}


.footer-nav a:hover {
  color: #53CAFC;
}

.footer-buttons {
  display: flex;
  gap: 1rem;
}

.btn-join,
.btn-subscribe {
  box-sizing: border-box;
}

.btn-join {
  padding: 8px 16px;
  border: 2px solid #53CAFC;
  background: transparent;
  color: #B0B0B0;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-join:hover {
  background-color: #53CAFC;
  color: white;
  border-color: #53CAFC;
}

.btn-subscribe {
  padding: 8px 16px;
  background: linear-gradient(to right, #53CAFC, #FEE0FF);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-subscribe::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid white;
  border-radius: 8px;
  opacity: 0;
  animation: snake-outline 1s linear infinite;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-subscribe:hover::before {
  opacity: 1;
}

/* 👤 Logged-in user display */
.user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 4px 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(83, 202, 252, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Invisible placeholder to reserve space */
.user-profile::after {
  content: "Username"; /* Match expected username length */
  visibility: hidden;
  height: 0;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
}


.user-profile:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05); /* 👈 grow on hover */
}


.profile-avatar {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #53CAFC;
  transition: transform 0.3s ease;
}

.profile-avatar:hover {
  transform: scale(1.07);
}

.profile-username {
  color: #000000;            /* ⬅️ Changed to white */
  font-weight: 900;          /* ⬆️ Satoshi Black */
  font-style: italic;        /* ⬅️ Italic style */
  font-size: 0.95rem;
  font-family: 'Satoshi', sans-serif;
  margin-right: 0.5rem;
  white-space: nowrap;
}


@keyframes snake-outline {
  0% { clip-path: inset(0 100% 100% 0); }
  25% { clip-path: inset(0 0 100% 0); }
  50% { clip-path: inset(0 0 0 0); }
  75% { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0 100% 100% 0); }
}

/* ✅ Hide main footer when sticky bar is active using body class */
body.hide-footer .minimal-footer {
  display: none !important;
}




.btn-signin-outline {
  padding: 8px 16px;
  border: 2px solid #53CAFC;
  background-color: transparent;
  color: #53CAFC;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Satoshi', sans-serif;
}

.btn-signin-outline:hover {
  background-color: #53CAFC;
  color: #fff;
}
















/* ───── STICKY TOP BAR (Two‑Stage Drop Reveal) ───────────────────────────── */

.sticky-top-bar {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  /* Hidden state */
  opacity: 0;
  transform: translateY(-40px) scale(0.95);
  pointer-events: none;
}

/* First notch reveal */
.sticky-top-bar.show-full {
  animation: notchDropIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
}

/* Second notch reveal */
.sticky-top-bar.show-compact {
  animation: notchDropIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
}

/* Drop animation */
@keyframes notchDropIn {
  0% {
    opacity: 0;
    transform: translateY(-60px) scale(0.92);
  }

  60% {
    opacity: 1;
    transform: translateY(6px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    top: 0;
  }
}

/* Layout */
.top-bar-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* 🔵 Icon Circle */
.top-bar-dot {
  height: 44px;
  width: 44px;
  background-color: #53CAFC;
  border-radius: 50%;
  background-image: url("Moveiconwhite.svg");
  background-size: 29px 29px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Rounded nav island */
.top-bar-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0.85rem;
  background-color: #53CAFC;
  border-radius: 999px;
  transition: all 0.35s ease;
}

/* Hide both navs by default */
.nav-full,
.nav-compact {
  display: none;
}

/* Show only the correct nav */
.sticky-top-bar.show-full .nav-full {
  display: flex;
}

.sticky-top-bar.show-compact .nav-compact {
  display: flex;
}

/* Compact notch slightly smaller */
.sticky-top-bar.show-compact .top-bar-nav {
  padding: 0.25rem 0.6rem;
  transform: scale(0.92);
}

/* Nav links */
.top-bar-nav a {
  color: #ffffff;             /* ⬅️ White text */
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;           /* ⬆️ Satoshi Black */
  font-style: italic;         /* ⬅️ Italic */
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
}


.top-bar-nav a:hover {
  color: #FEE0FF;
}

/* Divider */
.top-bar-nav .divider {
  width: 1px;
  height: 1rem;
  background-color: white;
  opacity: 0.6;
}



























/* Top Footer Glass Effect */
.top-footer {
 position: fixed;
 top: 0;
 width: 100%;
 height: 60px;
 backdrop-filter: blur(10px);
 background: rgba(255, 255, 255, 0.1);
 border-bottom: 1px solid rgba(255, 255, 255, 0.15);
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 0 30px;
 z-index: 1000;
}

.top-footer img {
 height: 40px;
}

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

.nav-links a {
 text-decoration: none;
 color: #ffffffcc;
 font-weight: 500;
 transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
 color: #ffffff;
}




.moven-message-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}






/* Hide mobile-only elements on desktop */
.mobile-menu-toggle,
.mobile-glass-menu {
  display: none;
}


/* ───────── iPhone Top Footer + Sticky Bar Fix ───────── */
@media (max-width: 768px) {

  /* ===== Minimal Glass Top Footer ===== */

  .minimal-footer {
    padding: 0.6rem 0.6rem 0.6rem 0.2rem; /* reduced LEFT padding */
    min-height: 60px;
  }

  .footer-inner {
    padding: 0;
    justify-content: space-between;
    align-items: center;
  }

  /* 🍔 Hamburger */
  .mobile-menu-toggle {
  display: flex;
  width: 26px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-left: 15px;   /* 🔥 pushes it right */
  margin-right: 4px;
}

  .mobile-menu-toggle span {
    height: 2px;
    width: 100%;
    background: #53CAFC;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Keep container stable */
  .footer-left {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* 🔥 Shift ONLY the logo left */
  .footer-logo {
    height: 40px;
    margin: 0;
    margin-left: -120px; /* controls logo position only */
  }

  /* Remove absolute positioning */
  .footer-right {
    position: static;
    transform: none;
    gap: 1rem;
    margin-right: 6px;
  }

  /* Hide desktop nav */
  .footer-nav {
    display: none;
  }

  .footer-buttons {
    gap: 0.5rem;
  }

  .profile-avatar {
    height: 32px;
    width: 32px;
  }

  .profile-username {
    display: none;
  }


  /* ===== Glass Dropdown (Original Style Kept) ===== */

  .mobile-glass-menu {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 30px 24px;

    background: linear-gradient(
      135deg,
      rgba(83, 202, 252, 0.25),
      rgba(255, 255, 255, 0.1),
      rgba(83, 202, 252, 0.2)
    );

    backdrop-filter: blur(48px) saturate(250%);
    -webkit-backdrop-filter: blur(48px) saturate(250%);

    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(83, 202, 252, 0.25);

    flex-direction: column;
    gap: 24px;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 9997;
  }

  .mobile-glass-menu a {
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000000;
  }

  .mobile-glass-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }


  /* ===== Sticky Blue Drop Bar (Unchanged) ===== */

  .sticky-top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    top: 18px;
  }

  .top-bar-content {
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .top-bar-dot {
    height: 30px;
    width: 30px;
    background-size: 18px 18px;
  }

  .top-bar-nav {
    width: auto;
    padding: 0.2rem 0.5rem;
    gap: 0.5rem;
  }

  .top-bar-nav a {
    font-size: 0.75rem;
    padding: 0.2rem 0.35rem;
  }

  .top-bar-nav .divider {
    height: 0.7rem;
  }

  .nav-full a:nth-of-type(1),
  .nav-full .divider:nth-of-type(1) {
    display: none;
  }

  .nav-full a:nth-of-type(3),
  .nav-full .divider:nth-of-type(3) {
    display: none;
  }

}
















.moven-banner-image {
  width: 100%;
  margin-top: 60px; /* to offset any fixed top nav */
}

.moven-banner-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0; /* make sure it's NOT rounded */
}


/* ─── Icon Sidebar with Clean Dividers ───────────────────────── */
.gear-section {
  width: 180px;
  flex-shrink: 0;
  position: sticky;
  top: 100px; /* adjust as needed for header+banner */
  height: calc(100vh - 100px);
  overflow-y: auto; /* ✅ now scrolls independently */
  padding-right: 6px;
}
/* Remove or comment out this */
.gear-list::after {
  content: "";
  display: block;
  height: 30px;
  background: linear-gradient(to bottom, transparent, white);
  position: sticky;
  bottom: 0;
}



.gear-footer-option {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;              /* ✅ Ensure vertical centering */
  background-color: #53CAFC;
  border-radius: 8px;
  margin: 10px 0 12px;
  padding: 14px 16px;               /* ✅ Slightly increased padding */
  transition: background-color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  overflow: visible;                /* ✅ Ensure text isn't clipped */
}

.gear-footer-label {
  color: #000;
  font-style: italic;
  font-weight: 900;
  font-size: 1rem;                  /* ✅ Slight font bump */
  font-family: 'Satoshi', sans-serif;
  white-space: nowrap;
  line-height: 1.3;                 /* ✅ More room for descenders */
  padding-right: 2px;               /* ✅ Avoid edge cramping */
  position: relative;
  z-index: 1;
}


.gear-footer-row {
  display: flex;
  align-items: center;
  gap: 2px;                   /* ✅ Increased spacing between text + icon */
}


.gear-footer-icon {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  margin-left: 4px;           /* ✅ Subtle push to the right */
}

.gear-link {
  text-decoration: none;
  display: block;
  width: 100%;
}


.gear-footer-option {
  overflow: visible;       /* ✅ Allow full rendering of children */
}


.gear-footer-option:hover {
  background-color: #3cb6e6;
}


.gear-collection-header {
  font-size: 0.8rem;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  margin: 10px 0 6px 0;
  padding-left: 2px;
  font-family: 'Satoshi', sans-serif;
  letter-spacing: 0.03em;
}





.gear-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  overflow-y: auto;     /* ✅ enables vertical scrolling */
  padding-right: 6px;  /* avoids scrollbar overlap */
}


.gear-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 30px;
  text-align: left;
}


.gear-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px; /* 👈 Add this line */
}


.gear-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gear-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin-top: 1px;
}

.gear-row span {
  flex-shrink: 0;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gear-divider {
  width: 20%;
  height: 1px;
  background-color: #ddd;
}

.gear-item:hover {
  color: #53CAFC;
}

.gear-item:hover svg {
  fill: #53CAFC;
}


/* ===================================== */
/* 📱 SNEAKER PAGE – CLEAN MOBILE FILTER */
/* (Sports Label + Tight Scroll Row) */
/* ===================================== */

@media (max-width: 768px) {

  /* Proper header offset */
  body {
    padding-top: 44px;
  }

  .moven-banner-image {
    margin-top: 0 !important;
  }

  main.main-layout {
    flex-direction: column;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }

  /* ─── Lift filter section higher ─── */

  .gear-section {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -44px;   /* ⬆️ moved higher */
    padding: 0;
    height: auto;
  }

  .gear-title {
    font-size: 1.05rem;
    font-weight: 800;
    padding: 0 16px;
    margin: 0 0 6px 0;
  }

  .gear-list {
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px 8px 16px;
    margin: 0;
    height: auto;
  }

  .gear-list::-webkit-scrollbar {
    display: none;
  }

  .gear-item {
    flex: 0 0 auto;
    margin: 0;
  }

  .gear-row {
    background: #f2f2f2;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    gap: 6px;
  }

  .gear-row img {
    width: 12px;
    height: 12px;
  }

  .gear-divider,
  .gear-collection-header {
    display: none;
  }

  .gear-footer-option {
    background: #53CAFC !important;
    border-radius: 999px;
    padding: 8px 14px;
    margin: 0;
  }

  .gear-footer-row {
    background: none !important;
    padding: 0;
  }

  .gear-footer-label {
    font-size: 0.82rem;
    font-weight: 800;
    color: #000;
  }

  .gear-footer-icon {
    width: 15px;
    height: 15px;
  }

  .gear-item:hover {
    color: inherit;
  }



}

















/* ─── Product Grid ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   margin-top: 140px; /* ⬅️ Add this line or adjust the value */
  gap: 60px 30px; /* 60px vertical gap, 30px horizontal gap */
  flex: 1;
}

/* Each group of card + info */
.product-item {
  display: flex;
  flex-direction: column;
}

/* Grey card only */
.product-card {
  background-color: #eaeaea;
  height: 260px;
  border-radius: 12px;
  cursor: pointer;
}

/* Text block OUTSIDE the card */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;     /* moved info lower */
  margin-bottom: 20px;
}

.sneaker-name {
  font-style: italic;
  font-weight: 400;
  color: #000;
  font-size: 0.9rem;
  margin: 0;
}

.image-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #111;
}

.info-collection {
  font-size: 0.85rem;
  color: #777;
  font-weight: 300;
  margin: 0;
}



/* Image inside product card */
.product-card.has-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 260px; /* restored height */
  background-color: #f4f4f4;
}

.product-image {
  width: 80%;                /* smaller width inside card */
  height: auto;
  max-height: 80%;           /* optional: avoid stretching vertically */
  object-fit: contain;       /* keeps the aspect ratio clean */
  border-radius: 10px;
  display: block;
  margin: 0 auto;            /* centers the image horizontally */
  margin-top: 30px;          /* creates space from the top */
}


/* Top-left label inside card */
.product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #000;
}

.product-label .product-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}



.moven-blue {
  color: #53CAFC;
  font-weight: 600;
}

.pink-drop {
  color: #FEE0FF;
  font-weight: 500;
}




/* ===================================== */
/* 📱 PRODUCT GRID – PHONE OPTIMISED */
/* (2 Columns, Centered Product Style) */
/* ===================================== */

@media (max-width: 768px) {

  /* 2-column grid like Nike */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;        /* tighter spacing */
    margin-top: 140px;      /* reduce from 140px */
    padding: 0 16px;
  }

  /* Card height slightly smaller */
  .product-card,
  .product-card.has-image {
    height: 210px;         /* reduced from 260px */
  }

  /* 🔥 Perfect product centering */
  .product-card.has-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-image {
    width: 75%;
    max-height: 75%;
    margin: 0;             /* remove top margin */
  }

  /* Product info tighter */
  .product-info {
    margin-top: 14px;
    margin-bottom: 18px;
  }

  .sneaker-name {
    font-size: 0.8rem;
  }

  .image-name {
    font-size: 0.95rem;
  }

  .info-collection {
    font-size: 0.75rem;
  }

}

