/* ======================================================
   GEARSOULS - ULTIMATE CYBERPUNK STYLESHEET
   CLEANED - OPTIMIZED - ERROR FREE
====================================================== */

/* ===============================
   GLOBAL & VARIABLES
=============================== */

:root {
  --primary: #00ffff;
  --secondary: #ff00ff;
  --tertiary: #ffff00;
  --dark: #0a0a0a;
  --darker: #050505;
  --light: #ffffff;
  --gray: #1a1a1a;
  --glow: rgba(0, 255, 255, 0.5);
  --glow-pink: rgba(255, 0, 255, 0.5);
  --font-primary: 'Orbitron', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===============================
   TYPOGRAPHY - RESPONSIVE
=============================== */

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { font-size: clamp(0.9rem, 2vw, 1rem); }

/* ===============================
   PRELOADER
=============================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  padding: 20px;
  width: 90%;
  max-width: 400px;
}

.preloader-logo {
  width: min(120px, 30vw);
  height: min(120px, 30vw);
  border-radius: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  margin: 20px 0;
  background: linear-gradient(45deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-bar {
  width: 100%;
  height: 3px;
  background: #222;
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===============================
   CANVAS BACKGROUND
=============================== */

#homeCanvas, #accountCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ===============================
   NAVBAR
=============================== */

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(95%, 1200px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 2vw, 14px) clamp(15px, 3vw, 26px);
  border-radius: 50px;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  text-decoration: none;
}

.brand-logo {
  width: clamp(40px, 8vw, 70px);
  height: clamp(40px, 8vw, 70px);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.brand-text {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 700;
  color: white;
}

.brand-highlight {
  color: var(--primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 3vw, 40px);
}

.nav-link {
  color: #aaa;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: 0.3s;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* ===============================
   HERO SECTION
=============================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, var(--dark) 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: min(90%, 1000px);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: clamp(5px, 1vw, 8px) clamp(10px, 2vw, 16px);
  border: 1px solid var(--primary);
  border-radius: 30px;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  margin-bottom: clamp(15px, 3vw, 30px);
  color: var(--primary);
}

.hero-title-main {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: clamp(15px, 3vw, 20px);
}

.hero-line {
  display: block;
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  opacity: 0.8;
  margin-bottom: clamp(20px, 4vw, 40px);
}

.hero-cta {
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.cta-primary, .cta-secondary {
  padding: clamp(10px, 2vw, 16px) clamp(20px, 4vw, 32px);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.cta-primary {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #000;
}

.cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 5vw, 50px);
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-primary);
}

.stat-label {
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  opacity: 0.6;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-20px); }
  60% { transform: translateX(-50%) translateY(-10px); }
}

/* ===============================
   GALLERY
=============================== */

.section-title {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 20px clamp(20px, 4vw, 40px);
}

.section-title h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 10px;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.section-title p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(15px, 3vw, 25px);
  padding: clamp(15px, 3vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h3 {
  font-size: clamp(1rem, 3vw, 1.4rem);
  margin-bottom: 5px;
}

.gallery-info p {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  opacity: 0.8;
}

.gallery-preview-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: clamp(35px, 5vw, 40px);
  height: clamp(35px, 5vw, 40px);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  opacity: 0;
}

.gallery-item:hover .gallery-preview-btn {
  opacity: 1;
}

.gallery-preview-btn:hover {
  background: var(--primary);
  color: #000;
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--primary);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--primary);
}

/* ===============================
   LIGHTBOX
=============================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  max-width: min(90%, 1200px);
  max-height: 90vh;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
}

.lightbox-image {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.lightbox-info {
  padding: clamp(15px, 3vw, 40px);
  text-align: center;
}

.lightbox-info h3 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  margin-bottom: 10px;
}

.lightbox-info p {
  margin-bottom: 20px;
}

.lightbox-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 28px);
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 2001;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(35px, 5vw, 50px);
  height: clamp(35px, 5vw, 50px);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 2001;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

@media (min-width: 768px) {
  .lightbox-content {
    flex-direction: row;
    width: 90%;
  }
  
  .lightbox-image {
    width: 60%;
    max-height: 80vh;
  }
  
  .lightbox-info {
    width: 40%;
    text-align: left;
  }
}

/* ===============================
   STORY SECTION
=============================== */

.story-section {
  padding: clamp(40px, 8vw, 80px) 20px;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 50px);
  max-width: 1200px;
  margin: 0 auto;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,255,255,0.2), rgba(255,0,255,0.2));
}

.story-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.story-badge {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.story-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 20px;
}

.story-content p {
  margin-bottom: 30px;
  opacity: 0.8;
}

.story-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.feature {
  text-align: center;
}

.feature i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--primary);
  margin-bottom: 10px;
}

.feature span {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (min-width: 992px) {
  .story-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .story-content {
    text-align: left;
  }
}

/* ===============================
   INSTAGRAM GRID
=============================== */

.instagram-section {
  padding: 40px 20px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 30px auto 0;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,255,255,0.3), rgba(255,0,255,0.3));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 5px;
}

.insta-overlay span {
  font-size: 0.8rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .instagram-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===============================
   NEWSLETTER
=============================== */

.newsletter-section {
  padding: clamp(40px, 8vw, 80px) 20px;
}

.newsletter-container {
  max-width: min(90%, 600px);
  margin: 0 auto;
  text-align: center;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  background: rgba(0,255,255,0.05);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 20px;
}

.newsletter-container h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 15px;
}

.newsletter-container p {
  margin-bottom: 30px;
  opacity: 0.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(0,255,255,0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 50px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--glow);
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }
  
  .newsletter-form input {
    flex: 1;
  }
  
  .newsletter-form button {
    width: auto;
    min-width: 150px;
  }
}

/* ===============================
   FOOTER
=============================== */

.footer-modern {
  background: rgba(0,0,0,0.9);
  padding: 40px 20px 20px;
  border-top: 1px solid rgba(0,255,255,0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  border-radius: 10px;
  margin-bottom: 15px;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  text-align: center;
}

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-column a i {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .footer-links {
    text-align: left;
  }
}

/* ===============================
   SCROLL TO TOP
=============================== */

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  border-radius: 50%;
  background: rgba(0,255,255,0.1);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary);
  color: #000;
}

/* ===============================
   ACCOUNT PAGE
=============================== */

.account-page {
  background: var(--darker);
  min-height: 100vh;
  position: relative;
}

.account-wrapper {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 50px;
  position: relative;
  z-index: 1;
}

.auth-card {
  width: min(450px, 95%);
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 30px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  animation: cardFloat 0.6s ease;
  box-shadow: 0 0 50px rgba(0,255,255,0.1);
}

.auth-card-inner {
  position: relative;
  z-index: 2;
}

@keyframes cardFloat {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(1000%); }
}

.auth-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--primary);
  z-index: 1;
  opacity: 0.3;
}

.auth-corner.top-left {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.auth-corner.top-right {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.auth-corner.bottom-left {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.auth-corner.bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.auth-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  animation: scan 3s linear infinite;
  opacity: 0.5;
  z-index: 1;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 15px;
  border: 2px solid var(--primary);
  animation: pulse 2s infinite;
}

.auth-title {
  font-size: 2rem;
  font-family: var(--font-primary);
  letter-spacing: 4px;
  margin-bottom: 5px;
}

.auth-subtitle {
  font-size: 0.8rem;
  opacity: 0.6;
  font-family: monospace;
}

.auth-form {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

.auth-form.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.auth-form h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.3s;
}

.input-group .toggle-password {
  left: auto;
  right: 15px;
  cursor: pointer;
}

.input-group input {
  width: 100%;
  padding: 15px 45px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s;
  font-family: monospace;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
  background: rgba(0,255,255,0.05);
}

.input-group.focused i {
  color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.85rem;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--primary);
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.checkbox-container input:checked ~ .checkmark {
  background: var(--primary);
}

.checkbox-container input:checked ~ .checkmark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 10px;
}

.forgot-link {
  color: var(--primary);
  cursor: pointer;
  transition: 0.3s;
}

.forgot-link:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--glow);
}

.auth-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.auth-btn.primary {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #000;
}

.auth-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--glow);
}

.auth-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.auth-btn:hover::before {
  left: 100%;
}

.auth-switch {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.switch-link {
  color: var(--primary);
  margin-left: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.switch-link:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--glow);
}

.user-status {
  margin-top: 20px;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--primary);
  font-family: monospace;
}

.reset-instruction {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 20px 0;
  font-style: italic;
}

/* ===============================
   DASHBOARD
=============================== */

.dashboard-card {
  width: min(800px, 95%);
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 30px;
  padding: 30px;
  position: relative;
  animation: cardFloat 0.6s ease;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.glitch-text {
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 2px;
}

.dashboard-header h2 {
  font-size: 2rem;
  font-family: var(--font-primary);
  margin-top: 5px;
  background: linear-gradient(45deg,#fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard-avatar {
  position: relative;
  width: 70px;
  height: 70px;
}

.dashboard-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--primary);
}

.avatar-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4caf50;
  border: 2px solid var(--dark);
}

.avatar-status.online {
  background: #4caf50;
  box-shadow: 0 0 10px #4caf50;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,255,255,0.1);
}

.stat-card i {
  font-size: 2rem;
  color: var(--primary);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-primary);
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.6;
}

.dashboard-section {
  margin-bottom: 30px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.section-header h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-header h3 i {
  color: var(--primary);
}

.section-count {
  background: rgba(0,255,255,0.1);
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.8rem;
  color: var(--primary);
}

.saved-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
  padding: 5px;
}

.saved-item {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.saved-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.saved-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.saved-item-info {
  padding: 10px;
}

.saved-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saved-item-info p {
  font-size: 0.8rem;
  color: var(--primary);
}

.remove-item {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255,0,0,0.7);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transition: 0.3s;
}

.saved-item:hover .remove-item {
  opacity: 1;
}

.remove-item:hover {
  background: #ff0000;
  transform: scale(1.1);
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 20px;
  grid-column: 1 / -1;
}

.empty-state i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 15px;
}

.empty-state p {
  opacity: 0.5;
  margin-bottom: 15px;
}

.empty-state.small {
  padding: 20px;
}

.shop-link-small {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
}

.shop-link-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--glow);
}

.activity-list {
  max-height: 200px;
  overflow-y: auto;
  padding: 5px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-item i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.activity-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-action {
  font-size: 0.9rem;
  font-weight: 600;
}

.activity-time {
  font-size: 0.7rem;
  opacity: 0.5;
}

.dashboard-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.action-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
}

.action-btn:hover {
  border-color: var(--primary);
  background: rgba(0,255,255,0.1);
  color: var(--primary);
}

.action-btn.logout:hover {
  border-color: #ff4444;
  background: rgba(255,68,68,0.1);
  color: #ff4444;
}

.user-email {
  margin-top: 15px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  font-family: monospace;
}

/* ===============================
   NOTIFICATIONS
=============================== */

.cyber-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.9);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10000;
  transform: translateX(200%);
  transition: transform 0.3s ease;
  box-shadow: 0 0 30px var(--glow);
}

.cyber-notification.show {
  transform: translateX(0);
}

.cyber-notification.success {
  border-color: #00ff00;
}

.cyber-notification.error {
  border-color: #ff4444;
}

.cyber-notification i {
  font-size: 1.5rem;
}

.cyber-notification.success i {
  color: #00ff00;
}

.cyber-notification.error i {
  color: #ff4444;
}

/* ===============================
   MOBILE MENU
=============================== */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  
  .hero-title-main {
    font-size: 2.5rem;
  }
  
  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .auth-card,
  .dashboard-card {
    padding: 30px 20px;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
  
  .dashboard-actions {
    flex-direction: column;
  }
  
  .saved-items-grid {
    grid-template-columns: 1fr;
  }
  
  .dashboard-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .stat-card {
    padding: 15px;
  }
}

/* ===============================
   LANDSCAPE MODE
=============================== */

@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 100px 20px 50px;
  }
  
  .hero-content {
    padding: 20px 0;
  }
  
  .hero-stats {
    margin-bottom: 20px;
  }
  
  .gallery-item {
    aspect-ratio: 16/9;
  }
}

/* ===============================
   TOUCH DEVICES
=============================== */

@media (hover: none) and (pointer: coarse) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  }
  
  .gallery-preview-btn {
    opacity: 1;
  }
  
  .cta-primary,
  .cta-secondary,
  .nav-link,
  button {
    padding: 15px 25px;
  }
  
  .scroll-top {
    bottom: 30px;
    right: 30px;
  }
}

/* ===============================
   HIGH RESOLUTION
=============================== */

@media (min-width: 1920px) {
  html {
    font-size: 18px;
  }
  
  .gallery-grid {
    max-width: 1800px;
  }
}

@media (max-width: 480px) {
  .auth-title {
    font-size: 1.5rem;
  }
  
  .auth-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-options {
    flex-direction: column;
    gap: 10px;
  }
}
/* ==================== SHOP PAGE STYLES ==================== */

.shop-page {
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  position: relative;
}

#shopCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Shop Header */
.shop-section {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}

.shop-header {
  text-align: center;
  margin-bottom: 50px;
}

.shop-title {
  font-size: 3.5rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(45deg, #0ff, #f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-subtitle {
  color: #888;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-family: 'Rajdhani', sans-serif;
}

/* Shop Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 2;
}

/* Shop Card */
.shop-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: #0ff;
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.shop-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.05);
}

.shop-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0ff;
  color: #000;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 2px;
  z-index: 2;
}

.shop-card-content {
  padding: 15px;
}

.shop-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
}

.shop-card-category {
  font-size: 0.8rem;
  color: #0ff;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-card-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0ff;
  font-family: 'Orbitron', sans-serif;
}

.shop-card-btn {
  background: transparent;
  border: 2px solid #0ff;
  color: #0ff;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
}

.shop-card-btn i {
  font-size: 0.9rem;
}

.shop-card-btn:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.shop-card-btn.clicked {
  transform: scale(0.95);
  background: #0ff;
  color: #000;
}

/* Notification */
.shop-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  border: 2px solid #0ff;
  color: #fff;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  border-radius: 4px;
}

.shop-notification.show {
  transform: translateX(0);
}

.shop-notification i {
  color: #0ff;
  font-size: 1.2rem;
}

.shop-notification span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .shop-section {
    padding: 80px 15px 40px;
  }
  
  .shop-title {
    font-size: 2.5rem;
  }
  
  .shop-subtitle {
    font-size: 1rem;
  }
  
  .shop-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }
  
  .shop-notification {
    left: 20px;
    right: 20px;
    bottom: 20px;
    transform: translateY(100px);
  }
  
  .shop-notification.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .shop-title {
    font-size: 2rem;
  }
  
  .shop-card-title {
    font-size: 1rem;
  }
  
  .shop-card-price {
    font-size: 1.1rem;
  }
  
  .shop-card-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}
/* =========================
   GENERAL SHOP STYLES
========================= */

body.shop-page {
  background-color: #05070d;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

.shop-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.shop-header {
  text-align: center;
  margin-bottom: 50px;
}

.shop-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
}

.gradient-text {
  background: linear-gradient(90deg, #00f0ff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  letter-spacing: 1px;
}

/* =========================
   PRODUCTS GRID
========================= */

.shopify-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Shopify product card adjustments */
.shopify-buy__product {
  width: 100% !important;
}

.shopify-buy__btn {
  width: 100% !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shopify-buy__btn:hover {
  opacity: 0.9;
}

/* =========================
   SHOP NOTIFICATION
========================= */

.shop-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #0c0f15;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.shop-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.shop-notification i {
  font-size: 1.2rem;
  color: #00f0ff;
}

#notificationMessage {
  color: #ffffff;
  font-weight: 500;
}

/* =========================
   SCROLL TO TOP
========================= */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(90deg, #00f0ff, #a855f7);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-top i {
  color: #000;
  font-size: 1.2rem;
}

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */

/* Laptop/desktop: 3–4 products per row */
@media (min-width: 1200px) {
  .shopify-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet: 2 products per row */
@media (max-width: 1024px) {
  .shopify-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone: 2 products per row */
@media (max-width: 600px) {
  .shopify-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Very small phone: 1 product per row */
@media (max-width: 400px) {
  .shopify-container {
    grid-template-columns: 1fr;
  }
}
/* ===================== GEARSOULS SHOP STYLE ===================== */

/* Container for all products */
.shopify-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px 0;
}

/* Each Shopify product */
.shopify-buy__product {
  background-color: #0c0f15;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  flex: 1 1 calc(45% - 48px); /* responsive two side-by-side */
  max-width: 400px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Product title */
.shopify-buy__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Product price */
.shopify-buy__price {
  font-size: 1.3rem;
  color: #cfcfcf;
  margin-bottom: 16px;
}

/* Add to cart button */
.shopify-buy__btn {
  background-color: #111418;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 14px 36px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.shopify-buy__btn:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* Quantity input */
.shopify-buy__quantity-input {
  font-size: 16px;
  padding: 12px;
  background-color: #141821;
  color: #ffffff;
  border: 1px solid #555;
  border-radius: 8px;
}

/* Responsive: two side-by-side on tablets */
@media (max-width: 768px) {
  .shopify-buy__product {
    flex: 1 1 calc(45% - 24px);
  }
}

/* Responsive: full width on phones */
@media (max-width: 480px) {
  .shopify-buy__product {
    flex: 1 1 100%;
  }
}

/* Notification style */
.shop-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0,255,255,0.1);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.shop-notification.show {
  opacity: 1;
  pointer-events: auto;
}

/* Scroll top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111418;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 999;
}

.scroll-top.visible {
  display: block;
}
/* ==================== FIX NAVBAR OVERLAP ==================== */
.shop-section {
  padding-top: 150px; /* adjust this to match your navbar height */
}

/* Optional: smooth scroll offset if you use anchor links */
html {
  scroll-padding-top: 200px; /* same as navbar height */
}
