/* ============================================================
   ADDI WORLD — addisworld.ai
   "Sticker Book Meets Dark Luxe"
   Complete Stylesheet — Mobile-First Responsive
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&family=Permanent+Marker&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --bg-dark: #050505;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --pink: #ff2d95;
  --pink-light: #ff6eb4;
  --pink-glow: rgba(255, 45, 149, 0.4);
  --pink-dim: rgba(255, 45, 149, 0.12);
  --neon-green: #bfff00;
  --chrome-start: #f0f0f0;
  --chrome-mid: #a8a8a8;
  --chrome-end: #666666;
  --cream: #f5f0e8;
  --red: #ff3333;
  --white: #ffffff;
  --gray-100: #e0e0e0;
  --gray-300: #999999;
  --gray-500: #555555;
  --gray-800: #222222;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-hand: 'Permanent Marker', cursive;

  --nav-height: 64px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 24px var(--pink-glow);
  --shadow-lift: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-sticker: 2px 3px 8px rgba(0, 0, 0, 0.5);

  --transition-fast: 0.2s ease;
  --transition-med: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   1. GLOBAL RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-100);
  background-color: var(--bg-dark);
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
  }
}

/* --- Noise grain overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, 2px); }
  100% { transform: translate(2px, -2px); }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--pink-light);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

p + p {
  margin-top: 1em;
}

::selection {
  background: var(--pink);
  color: var(--white);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-light);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--pink) var(--bg-dark);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   2. CHROME TEXT EFFECT
   ============================================================ */
.chrome-text {
  font-family: var(--font-display);
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--chrome-start) 20%,
    var(--chrome-mid) 40%,
    #ffffff 50%,
    var(--chrome-mid) 60%,
    var(--chrome-start) 80%,
    #ffffff 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeShift 5s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.08))
          drop-shadow(0 0 20px rgba(255, 255, 255, 0.04));
  text-shadow: none;
}

.chrome-heading-sm {
  font-family: var(--font-display);
  font-weight: 800;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--chrome-start) 25%,
    var(--chrome-mid) 50%,
    #ffffff 75%,
    var(--chrome-start) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromeShift 5s linear infinite;
}

@keyframes chromeShift {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ============================================================
   3. NAVIGATION
   ============================================================ */
.site-header {
  position: relative;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
}

/* --- Name Tag Logo --- */
.nav-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transform: rotate(-2deg);
  transition: transform var(--transition-fast);
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sticker), 0 0 0 2px var(--red);
  padding-bottom: 4px;
  flex-shrink: 0;
}

.nav-logo:hover {
  transform: rotate(0deg) scale(1.06);
}

.logo-hello {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 3px 12px 2px;
  line-height: 1.3;
}

.logo-name {
  display: block;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--bg-dark);
  padding: 2px 14px 0;
  line-height: 1.2;
}

/* --- Desktop Nav Links --- */
.nav-links,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.nav-links li,
.nav-menu li {
  list-style: none;
}

.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-300);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--neon-green));
  border-radius: 2px;
  transition: width var(--transition-med);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* --- Hamburger (mobile only) --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1010;
  background: none;
  border: none;
  padding: 0;
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav-menu {
    display: none;
  }

  .hero-bg {
    object-position: center center;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }
}

.hamburger span,
.hamburger .bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast);
}

.hamburger:hover span,
.hamburger:hover .bar {
  background: var(--pink);
}

.hamburger.open span:nth-child(1),
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2),
.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3),
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
.nav-links.open,
.nav-menu.open,
.nav-links.active,
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(
    160deg,
    rgba(5, 5, 5, 0.98) 0%,
    rgba(30, 0, 20, 0.98) 50%,
    rgba(5, 5, 5, 0.98) 100%
  );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1005;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 0;
}

.nav-links.open .nav-link,
.nav-menu.open .nav-link,
.nav-links.active .nav-link,
.nav-menu.active .nav-link,
.nav-links.open a,
.nav-menu.open a,
.nav-links.active a,
.nav-menu.active a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color var(--transition-fast), transform var(--transition-fast), text-shadow var(--transition-fast);
}

.nav-links.open .nav-link:hover,
.nav-menu.open .nav-link:hover,
.nav-links.open a:hover,
.nav-menu.open a:hover {
  color: var(--pink);
  transform: scale(1.1);
  text-shadow: 0 0 30px var(--pink-glow);
}

/* ============================================================
   4. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: var(--font-hand);
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  color: var(--pink);
  margin-bottom: 36px;
  transform: rotate(-1deg);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-glow {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 0 20px var(--pink-glow), 0 0 60px rgba(255, 45, 149, 0.15);
  animation: btnPulse 2.5s ease-in-out infinite;
}

.btn-glow:hover {
  color: var(--white);
  box-shadow: 0 0 35px var(--pink-glow), 0 0 100px rgba(255, 45, 149, 0.3);
  background: var(--pink-light);
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 20px var(--pink-glow), 0 0 60px rgba(255, 45, 149, 0.15); }
  50% { box-shadow: 0 0 35px var(--pink-glow), 0 0 90px rgba(255, 45, 149, 0.3); }
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-outline {
  color: var(--pink);
  background: transparent;
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.btn-disabled {
  color: var(--gray-500);
  background: var(--gray-800);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-buy {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--pink);
  border-radius: var(--radius-pill);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-buy:hover {
  background: var(--pink-light);
  box-shadow: 0 0 20px var(--pink-glow);
  transform: translateY(-2px) scale(1.04);
  color: var(--white);
}

.btn-contact {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: var(--pink);
  border-radius: var(--radius-pill);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-contact:hover {
  background: var(--pink-light);
  box-shadow: 0 0 24px var(--pink-glow);
  transform: translateY(-3px) scale(1.04);
  color: var(--white);
}

.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  background: var(--pink);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition-fast);
  box-shadow: 0 0 16px var(--pink-glow);
}

.btn-submit:hover {
  background: var(--pink-light);
  box-shadow: 0 0 30px var(--pink-glow);
  transform: translateY(-3px);
}

/* ============================================================
   6. SPARKLES
   ============================================================ */
.sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 5;
  animation: twinkle 2s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
  content: '';
  position: absolute;
  background: var(--white);
  border-radius: 2px;
}

.sparkle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sparkle::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sparkle-1 { animation-delay: 0s; }
.sparkle-2 { animation-delay: 0.4s; }
.sparkle-3 { animation-delay: 0.8s; }
.sparkle-4 { animation-delay: 1.2s; }
.sparkle-5 { animation-delay: 1.6s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.6) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(90deg); }
}

/* ============================================================
   7. MARQUEE
   ============================================================ */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: transparent;
  border-top: 2px solid var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
  padding: 12px 0;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  transform: rotate(-1deg);
  margin: -6px 0;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 18s linear infinite;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.marquee-content span::after {
  content: ' \2666 ';
  margin-left: 24px;
  color: var(--pink);
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   8. SECTION TITLES
   ============================================================ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* ============================================================
   9. FEATURED PRODUCTS / PRODUCT GRID
   ============================================================ */
.featured {
  padding: 80px 0;
  position: relative;
  background: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 30px var(--pink-glow), var(--shadow-lift);
  border-color: rgba(255, 45, 149, 0.4);
}

/* Neon green price accent on hover */
.product-card:hover .product-price {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(191, 255, 0, 0.3);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform var(--transition-med);
}

.product-card:hover .product-img-placeholder {
  transform: scale(1.06);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-card);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.product-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--pink);
  margin-bottom: 14px;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

/* Coming Soon Card */
.coming-soon-card {
  opacity: 0.7;
}

.coming-soon-card:hover {
  opacity: 1;
}

.coming-soon-label {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-sticker);
}

.product-card.coming-soon {
  opacity: 0.65;
  pointer-events: none;
}

.product-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.product-card.hidden {
  display: none;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-cta a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.section-cta a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--transition-med);
}

.section-cta a:hover {
  color: var(--pink-light);
}

.section-cta a:hover::after {
  width: 100%;
}

/* ============================================================
   10. BLOG PREVIEW (INDEX)
   ============================================================ */
.blog-preview {
  padding: 80px 0;
  background: transparent;
}

.blog-preview-grid,
#blog-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.fallback-text {
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--gray-500);
  padding: 40px 0;
}

/* ============================================================
   11. ABOUT TEASER (INDEX)
   ============================================================ */
.about-teaser {
  padding: 100px 0;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.about-teaser-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.about-teaser-content {
  text-align: center;
}

.about-teaser-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-100);
  margin-bottom: 24px;
}

/* Scrapbook Decorations */
.scrapbook-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.scrapbook-star {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--neon-green);
  font-size: 2rem;
  animation: float 4s ease-in-out infinite;
}

.scrapbook-heart {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--pink);
  font-size: 1.5rem;
  animation: float 5s ease-in-out infinite 0.5s;
}

.scrapbook-squiggle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--gray-500);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(3deg); }
  66% { transform: translateY(5px) rotate(-2deg); }
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
  background: transparent;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--pink), var(--neon-green)) 1;
  padding: 48px 0 24px;
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo-text {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-100);
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-4px) rotate(-5deg);
  box-shadow: 0 0 20px var(--pink-glow);
  border-color: var(--pink);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.built-with {
  font-family: var(--font-hand);
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.built-with span {
  color: var(--pink);
}

/* --- Footer classes used in sub-pages --- */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--pink);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================================
   13. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children support */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   14. SHOP PAGE
   ============================================================ */
.shop-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 20px 40px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 45, 149, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(191, 255, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-dark) 0%, #0a0008 100%);
  position: relative;
}

.shop-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.subtext {
  font-family: var(--font-hand);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--pink);
  transform: rotate(-1deg);
}

.pink-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--neon-green));
  border-radius: 3px;
  margin: 16px auto 0;
}

/* Category Filters */
.category-filters {
  padding: 24px 20px;
  text-align: center;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  color: var(--gray-300);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--white);
  border-color: var(--pink);
  background: var(--bg-card-hover);
}

.filter-btn.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: 0 0 16px var(--pink-glow);
}

.soon-indicator {
  font-family: var(--font-hand);
  font-size: 0.7rem;
  color: var(--neon-green);
  margin-left: 4px;
}

.shop-grid-section {
  padding: 20px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

#product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bottom-cta {
  text-align: center;
  padding: 60px 20px 80px;
}

/* ============================================================
   15. BLOG PAGE
   ============================================================ */
.blog-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 20px 40px;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 45, 149, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, #080010 100%);
}

.blog-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
}

.blog-filters button {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  color: var(--gray-300);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.blog-filters button:hover {
  color: var(--white);
  border-color: var(--pink);
}

.blog-filters button.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

#blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#blog-fallback {
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--gray-500);
  padding: 60px 20px;
}

/* ============================================================
   16. BLOG POST PAGE
   ============================================================ */
.blog-post {
  max-width: 740px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 20px 80px;
}

.scrapbook-border {
  border: 2px dashed rgba(255, 45, 149, 0.25);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  background: var(--bg-card);
  position: relative;
}

.scrapbook-border::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 20px;
  width: 40px;
  height: 8px;
  background: var(--pink);
  border-radius: 0 0 4px 4px;
  opacity: 0.6;
}

.post-header {
  text-align: center;
  margin-bottom: 32px;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.post-date {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.post-category {
  display: inline-block;
  padding: 4px 14px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--pink);
  border-radius: var(--radius-pill);
}

.post-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-100);
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 36px 0 14px;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--pink);
  margin: 28px 0 10px;
}

.post-content p {
  margin-bottom: 18px;
}

.post-content ul,
.post-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.post-content li {
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.7;
}

.post-content ol li {
  list-style: decimal;
}

.post-content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--pink-dim);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--cream);
}

.post-content a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content img {
  border-radius: var(--radius-sm);
  margin: 20px 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.back-link:hover {
  color: var(--pink-light);
  transform: translateX(-4px);
}

/* ============================================================
   17. ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 20px 40px;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(191, 255, 0, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 70%, rgba(255, 45, 149, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-dark) 0%, #050010 100%);
}

.about-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-story p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-100);
  margin-bottom: 20px;
}

/* Fun Facts Grid */
.fun-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.fact-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition-fast), border-color var(--transition-med), box-shadow var(--transition-med);
  position: relative;
  overflow: hidden;
}

.fact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--neon-green));
  opacity: 0;
  transition: opacity var(--transition-med);
}

.fact-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: rgba(255, 45, 149, 0.3);
  box-shadow: 0 0 24px var(--pink-glow);
}

.fact-card:hover::before {
  opacity: 1;
}

.fact-card .chrome-heading-sm {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  display: block;
  margin-bottom: 8px;
}

.fact-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Photo Placeholder */
.photo-placeholder {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  color: var(--gray-500);
  font-family: var(--font-hand);
  font-size: 1.2rem;
}

.tilted-frame {
  background: var(--cream);
  padding: 10px 10px 32px;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
  display: inline-block;
  transition: transform var(--transition-med);
}

.tilted-frame:hover {
  transform: rotate(0deg) scale(1.03);
}

.tilted-frame img {
  width: 100%;
  border-radius: 2px;
}

/* About CTA */
.about-cta {
  text-align: center;
  padding: 60px 20px 80px;
}

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 20px 40px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 45, 149, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-dark) 0%, #0a0005 100%);
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

#contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-100);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-dim), 0 0 20px rgba(255, 45, 149, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Social Section (contact page sidebar) */
.social-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social-section h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.social-section p {
  color: var(--gray-300);
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: var(--gray-100);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: 0 0 20px var(--pink-glow);
}

.social-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================================
   19. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   20. RESPONSIVE — 480px
   ============================================================ */
@media (min-width: 480px) {
  .product-grid,
  #product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-preview-grid,
  #blog-preview,
  #blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fun-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   21. RESPONSIVE — 768px (Tablets)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --nav-height: 72px;
  }

  .container {
    padding: 0 32px;
  }

  .nav-links,
  .nav-menu {
    gap: 28px;
  }

  .nav-link {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .product-grid,
  #product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .blog-preview-grid,
  #blog-preview,
  #blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .fun-facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  #contact-form {
    padding: 40px 32px;
  }

  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }

  .footer-bottom {
    text-align: center;
  }

  .scrapbook-border {
    padding: 48px 40px;
  }

  .featured {
    padding: 100px 0;
  }

  .blog-preview {
    padding: 100px 0;
  }

  .about-teaser {
    padding: 120px 0;
  }
}

/* ============================================================
   22. RESPONSIVE — 1024px (Small Desktop)
   ============================================================ */
@media (min-width: 1024px) {
  .product-grid,
  #product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .blog-preview-grid,
  #blog-preview,
  #blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fun-facts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   23. RESPONSIVE — 1200px (Large Desktop)
   ============================================================ */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .featured {
    padding: 120px 0;
  }

  .blog-preview {
    padding: 120px 0;
  }
}

/* ============================================================
   24. PRINT STYLES
   ============================================================ */
@media print {
  body {
    background: white;
    color: black;
  }

  body::before {
    display: none;
  }

  .navbar,
  .marquee-wrapper,
  .footer-socials,
  .hamburger,
  .sparkle,
  .scrapbook-star,
  .scrapbook-heart,
  .scrapbook-squiggle {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
