/* ─── 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;
}









/* 🔹 Intro Splash */
.intro-splash {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #53CAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px; /* ⬆️ Increased spacing between logo and bar */
}

/* ⬆️ BIGGER LOGO */
.intro-logo-image {
  width: 520px;              /* ⬆️ Larger width */
  max-width: 85vw;
  height: auto;
  object-fit: contain;
}

/* ⬆️ BIGGER LOADING BAR */
.loading-bar {
  width: 560px;              /* ⬆️ Wider bar */
  max-width: 90vw;
  height: 10px;              /* ⬆️ Thicker */
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

/* Progress bar */
.loading-progress {
  height: 100%;
  width: 0%;
  background-color: #ffffff;
  border-radius: 999px;
  transition: width linear;
}

/* Fade out */
.intro-splash.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}











/* Global styles */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* ✅ Prevent horizontal scrolling */
  background-color: white;
  font-family: 'Satoshi', sans-serif;
}


/* ───── 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;
}






/* 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;
  }

}






















/* 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);
}



/* ===================================== */
/* 📱 TOP FOOTER – iOS OPTIMISED */
/* ===================================== */

@media (max-width: 768px) {

  .top-footer {
    height: 55px;                     
    padding: 0 16px;                  
    backdrop-filter: blur(12px);      
    -webkit-backdrop-filter: blur(12px); 
    background: rgba(255, 255, 255, 0.08);

    /* ⬇️ Push content slightly lower */
    padding-top: 70px;
  }

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

  .nav-links {
    gap: 14px;                        
  }

  .nav-links a {
    font-size: 0.85rem;               
    color: #ffffffd9;
  }

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

  /* 🔥 Fade Animation (unchanged behavior, smoother on mobile) */
  .moven-message-heading {
    transform: translateY(15px);      
  }

}
























/* ============================= */
/* Intro Section (with Satoshi) */
/* ============================= */
.gear-intro-section {
  background-color: #e5e5e5;
  color: #111;
  padding: 80px 20px 40px;
  text-align: center;
  font-family: 'Satoshi', sans-serif;
}

.gear-intro-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;   /* ✅ Satoshi Black */
}


.gear-intro-section p {
  font-size: 1rem;
  color: #444;
  font-weight: 400; /* Satoshi Regular */
}


/* ============================= */
/* Gear Menu Section (Updated with Icons) */
/* ============================= */
.gear-menu-section {
  background-color: #ffffff;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
}

/* Menu wrapper box with subtle card style */
.explore-menu-box {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow-x: auto;
  padding: 0;
}

/* Inner menu layout */
.explore-menu {
  display: flex;
  justify-content: center;
  height: 100px;
  border-radius: 12px;
  overflow-x: auto;
  position: relative;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge */
}

.explore-menu::-webkit-scrollbar {
  display: none;               /* Chrome/Safari/Edge */
}

/* Each item in the menu */
.menu-item {
  position: relative;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  font-family: 'Satoshi', sans-serif;
  color: #333;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

/* Dividers between items */
.menu-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: #e0e0e0;
}

/* Fade out text on hover */
.menu-item span {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.menu-item.hover-icon:hover span {
  opacity: 0;
}

/* Icon that pops in */
.menu-item.hover-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  background-image: var(--hover-icon-url);
}

.menu-item.hover-icon:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Hover background effect */
.menu-item.hover-icon:hover {
  background-color: #fafafa;
}



/* ===================================== */
/* 📱 GEAR INTRO + MENU – iOS OPTIMISED */
/* (5 Items, Fully Centered, No Extra Space) */
/* ===================================== */

@media (max-width: 768px) {

  /* ============================= */
  /* Intro Section */
  /* ============================= */

  .gear-intro-section {
    padding: 60px 16px 30px;
  }

  .gear-intro-section h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .gear-intro-section p {
    font-size: 0.95rem;
  }

  /* ============================= */
  /* Gear Menu Section */
  /* ============================= */

  .gear-menu-section {
    padding: 24px 16px;
    display: flex;
    justify-content: center;
  }

  .explore-menu-box {
    width: auto;              /* prevent full-width stretch */
    display: inline-block;    /* shrink to content */
    border-radius: 10px;
  }

  .explore-menu {
    justify-content: center;  /* center items */
    height: 80px;
    overflow: visible;        /* remove scroll behavior */
  }

  .menu-item {
    padding: 14px 18px;
    font-size: 14px;
  }

  /* 🔥 Hide everything after the 5th item */
  .menu-item:nth-child(n+6) {
    display: none;
  }

  /* Disable hover effects on mobile */
  .menu-item.hover-icon:hover span {
    opacity: 1;
  }

  .menu-item.hover-icon::after {
    display: none;
  }

}





























/* ============================= */
/* Hero Image Slider (DOM) */
/* ============================= */

.gear-hero-image {
 position: relative;
 height: 70vh;
 overflow: hidden;
}

.gear-hero-image .slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 transform: translateX(100%);
 transition: transform 1s ease-in-out;
}

.gear-hero-image .current-slide {
 transform: translateX(0);
}

/* Timer Circle */
.image-timer-circle {
 position: absolute;
 bottom: 20px;
 right: 20px;
 width: 40px;
 height: 40px;
}

.image-timer-circle svg {
 transform: rotate(-90deg);
}

.image-timer-circle circle {
 fill: none;
 stroke: #53CAFC;
 stroke-width: 4;
 stroke-linecap: round;
 stroke-dasharray: 113;
 stroke-dashoffset: 113;
 animation: circleProgress 7s linear infinite;
}

@keyframes circleProgress {
 to {
 stroke-dashoffset: 0;
 }
}



































/* ============================= */
/* Moven Collection Section (Tighter Layout) */
/* ============================= */
.moven-collection-section {
 background-color: #ffffff;
 color: #111;
 padding: 60px 30px;
 text-align: center;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 gap: 18px;
 min-height: 45vh;
}

.moven-collection-section .section-subtitle {
 font-size: 0.9rem;
 color: #888;
 letter-spacing: 1px;
 text-transform: uppercase;
}

.moven-collection-section .section-title {
 font-size: 2.2rem;
 font-weight: 700;
}

.moven-collection-section .section-description {
 font-size: 1.05rem;
 color: #666;
}

.collection-btn {
 background-color: #0f0f0f;
 color: #ffffff;
 border: none;
 border-radius: 999px;
 padding: 10px 22px;
 font-size: 0.95rem;
 font-weight: 500;
 cursor: pointer;
 transition: background 0.3s ease;
 display: inline-block;
 max-width: 220px;
 width: auto;
}

.moven-collection-section .collection-btn {
 margin: 0 auto;
}


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







/* ============================= */
/* Image Description Section (Grid 2x2) */
/* ============================= */
.image-description-section {
 display: grid;
 grid-template-columns: 1fr 1fr;
 grid-auto-rows: 80vh; /* 🔥 BIGGER tiles */
 width: 100vw;
 margin: 0;
 padding: 0;
 overflow: hidden;
}

.image-box {
 position: relative;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 display: flex;
 align-items: flex-end;
 justify-content: flex-start;
 padding: 30px; /* more space for content */
 overflow: hidden;
}


.image-box::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
 z-index: 1;
}

.image-text {
 position: relative;
 z-index: 2;
 color: #fff;
}

.image-sub {
 font-size: 0.85rem;
 letter-spacing: 1px;
 margin-bottom: 4px;
 opacity: 0.9;
}

.image-title {
 font-size: 1.4rem;
 margin-bottom: 10px;
 font-weight: 600;
}

.image-btn {
 background: #ffffff;
 color: #111;
 border: none;
 border-radius: 999px;
 padding: 8px 20px;
 font-size: 0.9rem;
 font-weight: 500;
 cursor: pointer;
 transition: background 0.3s ease;
}

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


/* ===================================== */
/* 📱 MOVEN COLLECTION + IMAGE GRID – iOS OPTIMISED */
/* (Same Layout, Clean Scaling) */
/* ===================================== */

@media (max-width: 768px) {

  /* ============================= */
  /* Moven Collection Section */
  /* ============================= */

  .moven-collection-section {
    padding: 50px 18px;
    gap: 14px;
    min-height: 40vh;
  }

  .moven-collection-section .section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.8px;
  }

  .moven-collection-section .section-title {
    font-size: 1.7rem;           /* scaled from 2.2rem */
  }

  .moven-collection-section .section-description {
    font-size: 0.95rem;
  }

  .collection-btn {
    padding: 9px 18px;
    font-size: 0.9rem;
    max-width: 200px;
  }

  /* ============================= */
  /* Image Description Section */
  /* ============================= */

  .image-description-section {
    grid-template-columns: 1fr 1fr;   /* KEEP 2x2 layout */
    grid-auto-rows: 45vh;             /* reduced from 80vh */
    width: 100%;
  }

  .image-box {
    padding: 20px;                    /* tighter spacing */
  }

  .image-sub {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }

  .image-title {
    font-size: 1.05rem;                /* scaled from 1.4rem */
    margin-bottom: 8px;
  }

  .image-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

}





































/* ============================= */
/* Just In Section */
/* ============================= */
.just-in-section {
  background-color: #ffffff;
  padding: 80px 30px;
  color: #111;
  font-family: 'Satoshi', sans-serif;
}

.just-in-heading {
  font-size: 1.6rem;
  margin-bottom: 40px;
  text-align: left;
  font-weight: 600;
}

.just-in-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.just-in-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;   /* ✅ Keeps links clean if wrapped in <a> */
  color: inherit;
  cursor: pointer;
}

/* Hover lift for clickable cards */
.just-in-item:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}

/* Image Placeholder — product style */
.image-placeholder {
  position: relative;
  background-color: #f0f0f0;
  width: 100%;
  height: 260px;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Product Image */
.image-placeholder img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover zoom */
.just-in-item:hover .image-placeholder img {
  transform: scale(1.06);
}

/* ============================= */
/* Text Styling */
/* ============================= */

/* Label — "Walk Gear", "Run Gear" */
.image-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #53CAFC;               /* ✅ Brand blue */
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

/* Product Name — "Walker Core" */
.image-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: #111;
  margin-bottom: 2px;
}

/* Collection — "Walk Collection" */
.image-type {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 6px;
}

/* ============================= */
/* See What Else Section */
/* ============================= */
.see-what-else-wrapper {
  margin-top: 120px;
}

.see-what-else-heading {
  font-size: 1.6rem;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 600;
  color: #111;
}










/* ===================================== */
/* 📱 JUST IN – iOS OPTIMISED */
/* (Hide Jogger Speed Only) */
/* ===================================== */

@media (max-width: 768px) {

  /* ============================= */
  /* Just In Section */
  /* ============================= */

  .just-in-section {
    padding: 60px 18px;
  }

  .just-in-heading {
    font-size: 1.3rem;
    margin-bottom: 28px;
  }

  /* Keep clean 2-column layout */
  .just-in-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .just-in-item:hover {
    transform: none;
  }

  /* 🔥 Hide ONLY Jogger Speed (3rd item in FIRST grid) */
  .just-in-section > .just-in-grid:first-of-type > .just-in-item:nth-child(3) {
    display: none;
  }

  /* ============================= */
  /* Product Image Box */
  /* ============================= */

  .image-placeholder {
    height: 180px;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .image-placeholder img {
    width: 75%;
    height: 75%;
  }

  .just-in-item:hover .image-placeholder img {
    transform: none;
  }

  /* ============================= */
  /* Text Styling */
  /* ============================= */

  .image-label {
    font-size: 0.65rem;
    margin-bottom: 3px;
  }

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

  .image-type {
    font-size: 0.8rem;
  }

  /* ============================= */
  /* See What Else Section */
  /* ============================= */

  .see-what-else-wrapper {
    margin-top: 80px;
  }

  .see-what-else-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

}
































/* ✅ Moven Gear Collection Section */
.moven-gear-collection-section {
  background-color: white;
  transition: background-color 1s ease;
  padding: 100px 30px;
  color: black;
  font-family: 'Satoshi', sans-serif;
  overflow: hidden;
}

.moven-gear-collection-section.scrolled-in {
  background-color: #53CAFC;
}

.moven-gear-collection-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* 🔠 Headline + Subtext */
.gear-headline {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: black;
  opacity: 0;
  transform: translateY(20px);
  text-align: left;
  transition: all 0.8s ease;
}

.moven-gear-collection-section.scrolled-in .gear-headline {
  color: #FEE0FF;
}

.gear-subtext {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  text-align: left;
  transition: all 0.8s ease 0.2s;
}

.moven-gear-collection-section.scrolled-in .gear-headline,
.moven-gear-collection-section.scrolled-in .gear-subtext {
  opacity: 1;
  transform: translateY(0);
}

/* 🎁 Product Card Styles */
.gear-card-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gear-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 300px;
  height: 360px;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* ✅ UPDATED TOP LABEL ALIGNMENT */
.gear-card-top-label.with-icon {
  position: absolute;
  top: 18px;
  left: 16px;
  right: 16px;                 /* stretch full width */
  display: flex;
  align-items: center;
  justify-content: space-between; /* text left / icon right */
  font-weight: 700;
  font-size: 0.95rem;
  color: #111;
  padding: 0 4px;
}

/* Inline icon sizing */
.gear-icon-inline {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* Bottom label */
.gear-card-bottom-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-style: italic;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
}

.gear-product-image {
  max-width: 80%;
  height: auto;
}

.moven-gear-collection-section.scrolled-in .fade-card {
  opacity: 1;
  transform: translateY(0);
}

/* 🔗 View Entire Collection */
.view-collection-link {
  margin-top: 60px;
  text-align: center;
  font-size: 1.05rem;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}

.view-collection-link:hover {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
}

/* ➡️ Horizontal Scroll Strip */
.scroll-strip-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: auto;
  margin-top: 280px;
}

.scroll-strip-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-strip-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-strip {
  display: flex;
  gap: 40px;
  padding: 0 40px 40px 40px;
  box-sizing: border-box;
  min-width: max-content;
}

.scroll-item {
  min-width: 620px;
  height: 460px;
  background-color: white;
  border-radius: 32px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  overflow: hidden;
  position: relative;
}

.scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 🖤 Promo Section Content */
.promo-content {
  max-width: 1280px;
  margin: 200px auto 0 auto;
  text-align: center;
}

.promo-headline {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 10px;
}

.promo-subtext {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 60px;
}

.promo-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.promo-main-image {
  width: 100%;
  max-width: 1000px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.promo-overlay-image {
  position: absolute;
  right: -60px;
  bottom: -20px;
  width: 280px;
  max-width: 40vw;
  transform: rotate(-2deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border-radius: 16px;
}

/* Left overhang version */
.promo-image-wrapper.promo-image-left {
  margin-top: 120px;
}

.left-overhang {
  left: -60px;
  right: auto;
  bottom: -20px;
  transform: rotate(2deg);
}

/* 🎯 Personalized Gear Tiles Section */
.personalized-section {
  padding: 120px 30px 40px;
  text-align: center;
  color: #000;
  font-family: 'Satoshi', sans-serif;
}

.personalized-headline {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 60px;
  color: #000;
}

.gear-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.gear-tile {
  background-color: #ffffff;
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  padding: 24px;
  position: relative;
  height: 360px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gear-tile:hover {
  transform: translateY(-6px);
}

.tile-header {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;                 /* stretch full width */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tile-icon {
  width: 28px;
  height: 28px;
}

.tile-label {
  font-size: 0.9rem;
  font-weight: 700;
}

.tile-product-img {
  max-width: 70%;
  height: auto;
  margin: auto;
  margin-top: 70px;
  display: block;
}

.tile-footer {
  position: absolute;
  bottom: 22px;
  left: 22px;
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}

/* 🔘 Hover Icon Bubble */
.tile-hover-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  background-color: white;
  border-radius: 50%;
  background-image: url('Moveicon.svg');
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.gear-tile:hover .tile-hover-icon,
.gear-card:hover .tile-hover-icon {
  opacity: 1;
  transform: scale(1);
}

/* Links behave like blocks */
.gear-card-link,
.gear-tile-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Cursor + interaction hint */
.clickable-card {
  cursor: pointer;
}

.clickable-card:hover {
  transform: translateY(-6px);
}




/* ===================================== */
/* 📱 MOVEN GEAR COLLECTION – PHONE FINAL */
/* (Centered Product Images + Static Blue) */
/* ===================================== */

@media (max-width: 768px) {

  /* ─── Static Blue Background (NEVER fades) ─── */

  .moven-gear-collection-section,
  .moven-gear-collection-section.scrolled-in {
    background-color: #53CAFC !important;
    transition: none !important;
  }

  /* ─── Remove ALL Fade / Animation Effects ─── */

  .gear-headline,
  .gear-subtext,
  .gear-card,
  .fade-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .gear-headline {
    color: #FEE0FF !important;
  }

  /* ─── Hide Scroll Strip Completely ─── */

  .scroll-strip-wrapper {
    display: none !important;
  }

  /* ─── Personalized Section Layout ─── */

  .personalized-section {
    padding: 60px 14px 24px;
  }

  .personalized-headline {
    font-size: 1.4rem;
    margin-bottom: 26px;
  }

  /* ─── 2x2 Grid ─── */

  .gear-tile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* ─── Compact Cards ─── */

  .gear-tile {
    height: 170px;
    padding: 12px;
    border-radius: 14px;

    /* 🔥 Proper centering setup */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tile-header {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .tile-label {
    font-size: 0.65rem;
  }

  .tile-icon {
    width: 18px;
    height: 18px;
  }

  /* ✅ Center the product image perfectly */
  .tile-product-img {
    max-width: 90%;
    margin: 0;
    display: block;
  }

  .tile-footer {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.7rem;
  }

}





































/* ============================= */
/* Other Sports Section */
/* ============================= */
.other-sports-section {
  background-color: #ffffff;
  padding: 80px 30px;
  font-family: 'Satoshi', sans-serif;
  color: #111;
}

.other-sports-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* 🖤 Big Headline */
.other-sports-headline {
  font-size: 4.2rem;        /* even larger for final version */
  font-weight: 900;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.1;
}

/* 🔵 Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #53CAFC 0%, #FEE0FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* 📸 Main Image Wrapper */
.other-sports-image-wrapper {
  position: relative;
  width: 94%;
  max-width: 1320px;
  margin: 0 auto 80px auto;
  overflow: visible;
}

/* 🖼 Primary Image */
.other-sports-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 🏁 Overlay Image */
.other-sports-overlay-img {
  position: absolute;
  bottom: -60px;
  right: 0px;
  width: 220px;
  height: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 12px;
  object-fit: cover;
}

/* 📝 Text Block */
.other-sports-text-block {
  margin-top: 80px;
  text-align: left;
}

.other-sports-subheadline {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #000;
}

.other-sports-grey-sub {
  font-size: 1.15rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 16px;
}

.other-sports-paragraph {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* 📸 Clean Second Image */
.other-sports-image-wrapper.no-overhang {
  margin: 60px auto 0 auto;
}

.other-sports-main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================= */
/* Feature Row: Text + Image */
/* ============================= */
.other-sports-feature-content {
  max-width: 1200px;
  margin: 120px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Text */
.feature-text {
  flex: 1 1 480px;
  text-align: left;
}

.feature-headline {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #000;
}

.feature-subheadline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #444;
}

.feature-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Right Image */
.feature-image-wrapper {
  flex: 1 1 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0; /* no rounded corners */
  box-shadow: none; /* no shadow */
}


.other-sports-discover-link {
  margin-top: 60px;
  text-align: center; /* Center align */
}

.other-sports-discover-link a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.other-sports-discover-link a:hover {
  color: #000;
  text-decoration: underline;
}





/* ===================================== */
/* 📱 OTHER SPORTS – iOS OPTIMISED */
/* (Same Layout, Clean Scaling) */
/* ===================================== */

@media (max-width: 768px) {

  /* Section Padding */
  .other-sports-section {
    padding: 60px 18px;
  }

  /* 🖤 Big Headline */
  .other-sports-headline {
    font-size: 2rem;        /* scaled from 4.2rem */
    line-height: 1.15;
    margin-bottom: 28px;
  }

  /* 📸 Main Image Wrapper */
  .other-sports-image-wrapper {
    width: 100%;
    margin-bottom: 60px;
  }

  /* 🏁 Overlay Image (smaller + cleaner fit) */
  .other-sports-overlay-img {
    width: 120px;          /* scaled down */
    bottom: -30px;
    right: 10px;
    border-radius: 10px;
  }

  /* 📝 Text Block */
  .other-sports-text-block {
    margin-top: 60px;
  }

  .other-sports-subheadline {
    font-size: 1.5rem;     /* scaled from 2.4rem */
  }

  .other-sports-grey-sub {
    font-size: 1rem;
  }

  .other-sports-paragraph {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* 📸 Clean Second Image */
  .other-sports-image-wrapper.no-overhang {
    margin-top: 40px;
  }

  /* ============================= */
  /* Feature Row: Text + Image */
  /* ============================= */

  .other-sports-feature-content {
    margin-top: 80px;
    gap: 40px;
  }

  .feature-headline {
    font-size: 1.6rem;     /* scaled from 2.8rem */
    margin-bottom: 12px;
  }

  .feature-subheadline {
    font-size: 1.1rem;
  }

  .feature-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .feature-image-wrapper {
    margin-top: 10px;
  }

  .feature-image {
    max-width: 320px;      /* scaled image */
  }

  /* Discover Link */
  .other-sports-discover-link {
    margin-top: 40px;
  }

  .other-sports-discover-link a {
    font-size: 1rem;
  }

}




















/* ============================= */
/* Bottom Footer */
/* ============================= */
/* 🌟 Glass Bottom Footer Container */
.glass-bottom-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-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 48px rgba(83, 202, 252, 0.35),
    inset 0 0 60px rgba(255, 255, 255, 0.08);
  padding: 100px 70px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  z-index: 2;
  color: #B0B0B0;
  font-family: 'Satoshi', sans-serif;
  margin-top: 0;
  position: relative;
}

/* ✨ Shimmer Overlay */
.glass-bottom-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  animation: shimmerMove 8s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
}

/* 🏷 Top Title */
.footer-title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 50px;
  font-family: 'Satoshi', sans-serif;
  position: relative;
  z-index: 2;
}

/* 📦 Footer Layout */
.glass-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.footer-col {
  min-width: 180px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logobottom {
  width: 160px;
  margin: 40px auto 16px auto;
  display: block;
}

.footer-small-text {
  font-size: 0.9rem;
  color: #8f8f8f;
  margin: 6px 0;
  line-height: 1.4;
  text-align: center;
  margin-top: 10px;
}

.footer-small-text a {
  color: #8f8f8f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-small-text a:hover {
  color: #53CAFC;
  text-decoration: underline;
}

/* 📰 Section Headlines */
.footer-headline {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  margin-bottom: 12px;
  border-bottom: 1px solid #bdbdbd;
  padding-bottom: 6px;
  width: max-content;
}

/* 📋 Lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 6px 0;
  font-size: 0.95rem;
  cursor: pointer;
  color: #8f8f8f;
  transition: color 0.3s ease;
}

.footer-list li a {
  color: #8f8f8f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list li a:hover {
  color: #53CAFC;
  text-decoration: underline;
}

/* 📧 Email */
.footer-email {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #8f8f8f;
}

/* 🌐 Social Icons */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-socials img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* 📱 QR Icon */
.qr-icon {
  width: 80px;
  height: auto;
  margin: 0 0 10px 0;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.download-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

/* 🛒 Store Icons */
.store-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.store-icons img {
  width: 105px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.store-icons img:hover {
  transform: scale(1.05);
}

.store-icons img[alt="WatchOS"] {
  border-radius: 12px;
  overflow: hidden;
}







/* ───────── iPhone Glass Bottom Footer (Left Aligned + Branding Bottom) ───────── */
@media (max-width: 768px) {

  .glass-bottom-footer {
    padding: 70px 24px;
  }

  .glass-footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
  }

  /* 🔥 Move logo + copyright column to bottom */
  .glass-footer-content .footer-col:first-child {
    order: 99;
    margin-top: 40px;
  }

  .footer-logobottom {
    width: 140px;
    margin: 40px 0 12px 0;
  }

  .footer-small-text {
    font-size: 0.85rem;
    text-align: left;
    margin-top: 6px;
  }

  /* Section Headlines */
  .footer-headline {
    font-size: 1.1rem;
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Lists */
  .footer-list li {
    font-size: 0.9rem;
  }

  .footer-email {
    font-size: 0.9rem;
  }

  /* Social icons */
  .footer-socials {
    justify-content: flex-start;
  }

  /* Download Block */
  .download-block {
    align-items: flex-start;
    text-align: left;
  }

  .qr-icon {
    width: 70px;
  }

  .store-icons {
    justify-content: flex-start;
    gap: 12px;
  }

  .store-icons img {
    width: 95px;
  }

}
