/* ==========================================================================
   Spacecraft by Ashley - Styling & Design System
   ========================================================================= */
:root {
  /* Color Palette - NO PURPLE */
  --bg-dark: #0b101d;              /* Deep cosmic navy slate */
  --bg-card: rgba(18, 26, 45, 0.75);
  --bg-card-hover: rgba(26, 38, 64, 0.9);
  --border-color: rgba(255, 255, 255, 0.12);
  --border-highlight: rgba(56, 189, 248, 0.4);

  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  /* Vibrant Accents: Cyan, Teal, Coral/Rose & Sunset Orange */
  --accent-cyan: #38bdf8;
  --accent-teal: #2dd4bf;
  --accent-rose: #fb7185;
  --accent-amber: #f59e0b;
  --accent-etsy: #f97316;

  /* Gradients & Glows */
  --gradient-primary: linear-gradient(135deg, var(--accent-cyan), var(--accent-rose));
  --gradient-ombre: linear-gradient(135deg, #38bdf8 0%, #2dd4bf 35%, #fb7185 70%, #fbbf24 100%);
  --gradient-etsy: linear-gradient(135deg, #f97316, #ea580c);
  --glass-glow: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.18), rgba(251, 113, 133, 0.12) 40%, transparent 85%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container-width: 1140px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Strict Overflow Lock */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  background-image: var(--glass-glow);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

#app {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* Starfield Night Sky Layer fading into deep navy */
.starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 750px;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(1.5px 1.5px at 15px 25px, #ffffff, transparent),
    radial-gradient(2px 2px at 80px 140px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.2px 1.2px at 150px 60px, rgba(56, 189, 248, 0.8), transparent),
    radial-gradient(2.5px 2.5px at 240px 190px, rgba(255, 255, 255, 0.95), transparent),
    radial-gradient(1.5px 1.5px at 320px 70px, rgba(251, 113, 133, 0.8), transparent),
    radial-gradient(2px 2px at 420px 220px, #ffffff, transparent),
    radial-gradient(1.2px 1.2px at 510px 110px, rgba(56, 189, 248, 0.9), transparent),
    radial-gradient(2.5px 2.5px at 630px 40px, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 750px 180px, rgba(251, 113, 133, 0.9), transparent),
    radial-gradient(2px 2px at 860px 90px, #ffffff, transparent),
    radial-gradient(1.2px 1.2px at 970px 250px, rgba(56, 189, 248, 0.85), transparent),
    radial-gradient(2px 2px at 1080px 130px, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 1180px 30px, rgba(255, 255, 255, 0.8), transparent);
  background-repeat: repeat-x;
  background-size: 1200px 400px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
  width: 100%;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* NAVBAR HEADER */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 16, 29, 0.94);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: nowrap !important;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-sparkle {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.desktop-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover {
  color: var(--accent-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Official Instagram Logo Button */
.nav-social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
  padding: 7px;
}

.nav-social-icon-btn:hover {
  background: rgba(251, 113, 133, 0.2);
  border-color: rgba(251, 113, 133, 0.5);
  transform: translateY(-1px);
}

.nav-ig-logo {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain;
  display: block;
}

.badge-ig-logo {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
}

.nav-etsy-btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Mobile Hamburger Button (3 lines) */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  z-index: 110;
  flex-shrink: 0;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Dropdown Drawer Menu */
.mobile-dropdown-menu {
  display: none;
  background: rgba(11, 16, 29, 0.96);
  border-bottom: 1px solid var(--border-highlight);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem 1.5rem;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.mobile-dropdown-menu.active {
  display: block !important;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--accent-cyan);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-highlight);
}

.btn-etsy {
  background: var(--gradient-etsy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
  font-weight: 700;
}

.btn-etsy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.5);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* Hero Section */
.hero-section {
  padding: 3.25rem 0 2.75rem;
  text-align: center;
  width: 100%;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* GLITTER TITLE STYLING */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.glitter-text {
  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #e2e8f0 20%,
    #fef08a 40%,
    #ffffff 60%,
    #fde047 80%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glitterShimmer 5s linear infinite;
  filter: drop-shadow(0 0 16px rgba(254, 240, 138, 0.4));
}

@keyframes glitterShimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.sparkle-left, .sparkle-right {
  font-size: 1.5rem;
  animation: sparklePulse 2.5s ease-in-out infinite alternate;
}

.sparkle-right {
  animation-delay: 1.25s;
}

@keyframes sparklePulse {
  0% { transform: scale(0.85) rotate(-5deg); opacity: 0.7; }
  100% { transform: scale(1.15) rotate(10deg); opacity: 1; filter: drop-shadow(0 0 8px #fef08a); }
}

/* Script Subtitle */
.script-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4.8vw, 2.45rem);
  font-weight: 700;
  font-style: italic;
  text-transform: lowercase;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
  max-width: 100%;
}

.gradient-text {
  background: var(--gradient-ombre);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* PROMINENT HERO FEATURED STATEMENT BOX */
.hero-intro-box {
  background: linear-gradient(135deg, rgba(18, 26, 45, 0.9), rgba(26, 38, 64, 0.8));
  border: 1.5px solid var(--border-highlight);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  width: 100%;
  max-width: 910px;
  margin-bottom: 2rem;
  text-align: center;
}

.hero-intro-text {
  font-size: clamp(1.1rem, 3.2vw, 1.35rem);
  line-height: 1.6;
  font-weight: 500;
  color: #ffffff;
  text-wrap: balance;
}

.hero-intro-highlight {
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Craft Tags Pill Bar */
.craft-tags-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
  width: 100%;
}

.craft-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  width: 100%;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* About Section & Featured Quote */
.about-card {
  max-width: 840px;
  margin: 0 auto;
  text-align: left;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  margin: 0.5rem 0 1rem;
}

.about-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  border-left: 4px solid var(--accent-cyan);
  padding-left: 1.25rem;
  margin: 1.25rem 0 1.5rem;
  background: rgba(56, 189, 248, 0.06);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.about-social {
  margin-top: 1.25rem;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.3);
  color: var(--accent-rose);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.social-badge:hover {
  background: rgba(251, 113, 133, 0.22);
  transform: translateY(-2px);
}

/* CRAFT PROJECTS SHOWCASE BOX */
.craft-showcase-box {
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.08), rgba(56, 189, 248, 0.06));
  border: 1px solid rgba(251, 113, 133, 0.28);
  padding: 2.25rem;
}

.showcase-header {
  text-align: left;
  margin-bottom: 1.25rem;
}

.showcase-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-top: 0.35rem;
  margin-bottom: 0.4rem;
}

.showcase-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* CRAFT SLIDESHOW (1:1 Square Aspect Ratio) */
.craft-slideshow-box {
  margin-bottom: 0.5rem;
  max-width: 520px;
}

.craft-slideshow-box .slideshow-frame {
  width: 100%;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  max-height: 520px;
}

.craft-slideshow-box .slideshow-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FOR GOODNESS CAKES COMMUNITY SECTION */
.community-section {
  padding: 3rem 0 4rem;
}

.fgc-card {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.12), rgba(245, 158, 11, 0.08), rgba(56, 189, 248, 0.08));
  border: 1.5px solid rgba(251, 113, 133, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
}

.fgc-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: 0.35rem 0 0.5rem;
}

.fgc-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.fgc-bio-box {
  background: rgba(11, 16, 29, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.fgc-bio-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.fgc-bio-box p:last-child {
  margin-bottom: 0;
}

.fgc-link {
  color: var(--accent-rose);
  font-weight: 700;
  text-decoration: underline;
}

.fgc-link:hover {
  color: var(--accent-amber);
}

.fgc-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.fgc-cta-card {
  background: rgba(11, 16, 29, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: all var(--transition);
}

.fgc-cta-card:hover {
  border-color: var(--accent-rose);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(251, 113, 133, 0.15);
}

.fgc-cta-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.fgc-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fgc-cta-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.fgc-btn {
  width: 100%;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
}

/* Category Grid */
.category-grid, .baking-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.category-card, .baking-card {
  text-align: center;
}

.category-icon, .baking-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.category-card h3, .baking-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.category-card p, .baking-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.shop-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(18, 26, 45, 0.8));
  border: 1px solid rgba(249, 115, 22, 0.3);
  text-align: left;
}

.banner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.banner-text p {
  color: var(--text-secondary);
}

/* Baking Gallery Banner */
.baking-gallery-banner {
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(251, 113, 133, 0.08));
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 2.25rem;
  text-align: left;
}

.gallery-banner-content {
  width: 100%;
  text-align: left;
}

.gallery-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.35rem;
}

.gallery-banner-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.gallery-banner-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* REAL PHOTO SLIDESHOW PREVIEW BOX */
.portfolio-slideshow-box {
  width: 100%;
  max-width: 720px;
  margin: 1.5rem auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slideshow-anchor {
  display: block;
  width: 100%;
  text-decoration: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-highlight);
}

.slideshow-frame {
  position: relative;
  width: 100%;
  height: 380px;
  background: rgba(11, 16, 29, 0.9);
  overflow: hidden;
}

.slideshow-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease-in-out, transform 0.4s ease;
}

.slideshow-anchor:hover .slideshow-img {
  transform: scale(1.03);
}

.slideshow-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 16, 29, 0.92) 0%, rgba(11, 16, 29, 0) 100%);
  padding: 1.5rem 1.25rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
}

.slideshow-badge-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.slideshow-badge-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-rose);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* Slideshow Controls Bar */
.slideshow-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.slideshow-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.slideshow-nav-btn:hover {
  background: var(--accent-cyan);
  color: #000;
}

.slideshow-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active, .dot:hover {
  background: var(--accent-cyan);
  transform: scale(1.2);
}

.gallery-banner-action {
  text-align: center;
  margin-top: 1rem;
}

/* Direct Email Note in Contact Card */
.direct-email-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.85rem;
  background: rgba(56, 189, 248, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.2);
  word-break: break-word;
}

.direct-email-note a {
  color: var(--accent-cyan);
  font-weight: 700;
  text-decoration: none;
}

.direct-email-note a:hover {
  text-decoration: underline;
}

/* Baking Note */
.commission-note {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border-left: 4px solid var(--accent-rose);
  margin-top: 2rem;
  text-align: left;
}

.note-icon {
  font-size: 1.75rem;
}

.note-text h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.note-text p {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* Contact & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

/* Form Inputs (16px prevents iOS Safari auto-zoom) */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(11, 16, 29, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition);
}

.form-input:focus {
  border-color: var(--accent-cyan);
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.subscribe-form .form-input {
  flex: 1;
  min-width: 180px;
}

/* Prominent Form Status Notification Banner */
.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: #5eead4;
  box-shadow: 0 4px 15px rgba(45, 212, 191, 0.15);
  animation: fadeInStatus 0.4s ease-in-out forwards;
}

.form-status.visible {
  display: block;
}

@keyframes fadeInStatus {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4rem;
  width: 100%;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================================================= */

@media screen and (max-width: 1024px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .brand-logo {
    font-size: 1.15rem;
  }
}

@media screen and (max-width: 640px) {
  .section {
    padding: 2.75rem 0;
  }

  .container {
    padding: 0 0.85rem;
  }

  .glass-card {
    padding: 1.25rem 1rem;
  }

  .fgc-card {
    padding: 1.35rem 1rem;
  }

  .fgc-bio-box {
    padding: 1.15rem 1rem;
  }

  .slideshow-frame {
    height: 280px;
  }

  .craft-slideshow-box .slideshow-frame {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
  }

  .hero-intro-box {
    padding: 1.35rem 1rem;
    border-radius: var(--radius-md);
  }

  .hero-intro-text {
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .craft-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn, .banner-album-btn, .shop-banner .btn, .subscribe-form .btn {
    width: 100%;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .about-quote {
    padding: 1rem;
    font-size: 1.05rem;
  }

  .commission-note {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-etsy-btn {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }
}
