/* Root Variables - Porsche-Inspired Light Theme */
:root {
  /* Background Colors - Light Theme */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-tertiary: #F5F5F5;
  
  /* Text Colors - Light Theme */
  --text-primary: #000000;
  --text-secondary: #1A1A1A;
  --text-tertiary: #666666;
  --text-muted: #999999;
  
  /* Accent Colors - Light Theme */
  --accent-gray: #E5E5E5;
  --accent-gray-dark: #D8D8D8;
  --accent-green-light: #000000;
  --accent-green: #1A1A1A;
  --accent-green-dark: #333333;
  --accent-teal: #000000;
  --accent-blue: #000000;
  --accent-blue-light: #1A1A1A;
  
  /* Glass Morphism - Light Theme */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-bg-light: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --blur-amount: 20px;
  
  /* Borders - Light Theme */
  --border-color: rgba(0, 0, 0, 0.1);
  --border-color-dark: rgba(0, 0, 0, 0.15);
  
  /* Shadows - Light Theme */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Base Colors - Light Theme */
  --dark-primary: #FFFFFF;
  --dark-secondary: #FAFAFA;
  --dark-accent: #F5F5F5;
  --dark-overlay: rgba(255, 255, 255, 0.9);
  
  /* Gradient Text Colors - Subtle Light Theme */
  --gradient-text-start: #4A4A4A;
  --gradient-text-end: #000000;
  
  /* Layout */
  --navbar-height: 73px; /* Navbar height matching Porsche design */
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  font-weight: 400;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle, rgba(0, 0, 0, 0.10) 2px, transparent 1px),
    linear-gradient(to bottom, #FFFFFF 0%, #F0F0F0 50%, #FFFFFF 100%);
  background-size: 30px 30px, 100% 100%;
  z-index: -2;
  opacity: 1;
}

#app {
  min-height: 100vh;
  width: 100%;
  position: relative;
}

/* Prevent body scroll on configurator pages */
body.configurator-page {
  overflow: hidden;
  height: 100vh;
}

/* Background Container - For Blender/3D animations */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Blender Video Background (for future integration) */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

/* Light Geometric Shapes - Animated Background Elements */
.dark-shape {
  position: absolute;
  background: var(--accent-gray);
  opacity: 0.3;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.dark-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  animation: floatShape 25s ease-in-out infinite;
}

.dark-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -150px;
  animation: floatShape 30s ease-in-out infinite reverse;
}

.dark-shape-3 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 10%;
  animation: floatShape 35s ease-in-out infinite;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.08;
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
    opacity: 0.12;
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
    opacity: 0.06;
  }
}

/* Light Section Overlays */
.section-dark-overlay {
  position: relative;
}

.section-dark-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--dark-overlay) 0%,
    transparent 50%,
    var(--dark-overlay) 100%
  );
  z-index: -1;
  opacity: 0.05;
}

/* Glass Morphism Panel - Light Theme */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 
    var(--shadow-md),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle accent on glass panels */
.glass-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gray) 20%,
    var(--accent-gray) 80%,
    transparent
  );
  opacity: 0.5;
  z-index: 1;
}

/* Beveled Edge Effect */
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.05) 50%,
    transparent
  );
  border-radius: 16px 16px 0 0;
}

/* .glass-panel::after is defined above with dark accent line */

/* Navigation - Fixed Light Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  transform: translateY(0);
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 1rem;
  gap: 2rem;
  position: relative;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.navbar-nav a:hover {
  color: var(--text-primary);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--text-primary);
  transition: width 0.3s ease;
}

.navbar-nav a:hover::after {
  width: calc(100% - 2rem);
}

.account-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-primary);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.account-button:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.account-button svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.account-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.logo-link:hover {
  opacity: 0.7;
}

.logo-image {
  height: 26.67px;
  width: auto;
  object-fit: contain;
  display: block;
}

.menu-toggle {
  display: none; /* Hidden on desktop, shown on mobile */
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-toggle:hover {
  background: var(--accent-gray);
}

.menu-toggle:focus {
  outline: none;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.menu-open {
  opacity: 1;
  visibility: visible;
}

.menu-content {
  position: absolute;
  top: 80px;
  right: 2rem;
  background: var(--bg-primary);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.menu-overlay.menu-open .menu-content {
  transform: translateY(0);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.menu-link:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 3rem 2rem 2rem;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info-list p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-tertiary);
  display: inline-block;
  flex-shrink: 0;
}

.footer-copyright-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.footer-copyright-text .gradient-text {
  font-weight: 700;
}

.footer-email,
.footer-phone {
  color: var(--text-tertiary);
}

.footer-time {
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 16rem;
  flex-wrap: nowrap;
}

.footer-link-category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-category-heading {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  line-height: 1;
  min-height: 60px;
  display: flex;
  align-items: flex-start;
  letter-spacing: -0.01em;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-nav a {
  color: var(--text-tertiary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s ease;
  display: inline-block;
}

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

.footer-socials {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 1rem;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-tertiary);
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  padding-top: calc(4rem + var(--navbar-height));
  z-index: 1;
  background: transparent;
  overflow: hidden;
}

.hero::after {
  content: 'AUDIO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25rem;
  font-weight: 100;
  color: rgba(255, 200, 180, 0.1);
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 2rem 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: heroButtonsIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-stroke-animation {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 100%;
  min-height: 100%;
  z-index: 0;
  pointer-events: none;
  animation: strokeWiggle 3s ease-in-out infinite;
}

.animated-stroke {
  opacity: 0.7;
  filter: blur(1.5px);
}

@keyframes strokeWiggle {
  0%, 100% {
    transform: translateX(-50%) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateX(-50%) translateX(3px) rotate(0.5deg);
  }
  50% {
    transform: translateX(-50%) translateX(-2px) rotate(-0.3deg);
  }
  75% {
    transform: translateX(-50%) translateX(2px) rotate(0.4deg);
  }
}

.hero-cassette-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: heroTitleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-tertiary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  animation: heroSubtitleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-buttons {
  opacity: 0;
  animation: heroButtonsIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroTitleIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonsIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutTitleIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutDescriptionIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutImageIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */

/* Scroll fade for sections */
section {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  opacity: 1;
  transform: translateY(0);
}

/* Section fade-in animation (same as hero) */
section.section-fade-in,
.section-fade-in {
  animation: sectionFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sectionFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section fade-out */
section.section-fade-out,
.section-fade-out {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Process section - no animations */
section.process {
  opacity: 1 !important;
  transform: none !important;
  transition: none;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Buttons */
.btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: #FFFFFF;
  border: 1px solid #000000;
  color: #000000;
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-cta {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid #000000;
  color: var(--text-primary);
  padding: 0.875rem 2rem;
  font-weight: 400;
  font-size: 1rem;
}

.btn-cta:hover {
  background: var(--glass-bg-light);
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Section Title (shared) */
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* About Section */
.about {
  position: relative;
  padding: 4rem 2rem;
  z-index: 1;
  background: var(--bg-primary) !important;
  overflow: visible;
}

.about::before {
  display: none !important;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-title {
  text-align: center;
  margin-bottom: 0;
  opacity: 0;
  /* Animation will be triggered by JavaScript when section comes into view */
}

.about-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-tertiary);
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  /* Animation will be triggered by JavaScript when section comes into view */
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  width: 100%;
  max-width: 1400px;
}

.about-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.about-step-box {
  width: 100%;
  height: 220px;
  background: #f8f9fd;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem 2rem;
  padding-bottom: 2rem;
  gap: 1.5rem;
}

.about-step-number {
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.about-step-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
}

.about-step-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
  max-width: 280px;
}

.about-step {
  opacity: 0;
  /* Animation will be triggered by JavaScript when section comes into view */
}

@media (max-width: 768px) {
  .about-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-step-box {
    width: 280px;
    height: 180px;
  }
}


/* Stats Section (formerly Services) */
.services {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
  background: var(--bg-primary);
  overflow: hidden;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stats-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}

.stats-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 0;
  opacity: 0;
  /* Animation will be triggered by JavaScript when section comes into view */
}

.stat-value {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stat-counter {
  display: inline-block;
}

.stat-label {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text-primary);
  display: inline-block;
  margin-top: 0;
}

.stat-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.stat-divider {
  height: 1px;
  background: var(--border-color);
  width: 100%;
  margin: 0;
}

@keyframes statFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 8rem 0;
  z-index: 1;
  background: transparent;
  overflow: hidden;
}

.testimonials-container {
  max-width: 100%;
  margin: 0 auto;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  padding: 0;
}

.testimonials-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 0 2rem;
}

.testimonials-scroll-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  will-change: transform;
  box-shadow: none;
}

.testimonial-box {
  width: 480px;
  min-height: 400px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.testimonial-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.03) 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.03) 3px);
  background-size: 4px 4px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.testimonial-box > * {
  position: relative;
  z-index: 1;
}

.testimonial-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
  text-align: left;
}

.testimonial-text {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-tertiary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
  text-align: left;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.testimonial-role {
  font-size: 0.875rem;
  text-align: left;
  background: linear-gradient(135deg, #ffd1b3 0%, #FFA8D1 20%, #E8B4F5 40%, #D4A3F0 60%, #ffe9d4 80%, #FFB3D9 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  animation: gradientShift 3s ease infinite;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 8rem 2rem;
  z-index: 1;
  background: transparent;
  overflow: hidden;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  min-height: 100%;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-align: left;
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-tertiary);
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: auto;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-form-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.cta-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta-form-group {
  display: flex;
  flex-direction: column;
}

.cta-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.cta-form-input:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.cta-form-input::placeholder {
  color: var(--text-tertiary);
}

.cta-form-input textarea,
.cta-form-input[type="textarea"] {
  resize: vertical;
  min-height: 80px;
}

textarea.cta-form-input {
  resize: vertical;
  min-height: 80px;
}

.cta-form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 1rem;
  }

  .hero-title {
    white-space: normal;
  }

  .navbar-container {
    padding: 0;
    justify-content: space-between;
  }

  .logo-link {
    position: static;
    left: auto;
  }

  .navbar-right {
    position: static;
    right: auto;
  }

  .navbar-nav {
    display: none; /* Hide nav links on mobile */
  }

  .menu-toggle {
    display: flex; /* Show hamburger menu on mobile */
  }

  .hero {
    padding: 1rem;
    padding-top: 0;
    min-height: 100vh;
  }

  .hero-container {
    text-align: center;
  }

  .hero-content {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    justify-content: center;
  }

  .hero-stroke-animation {
    max-width: 400px;
    opacity: 0.6;
  }

  .animated-stroke {
    stroke-width: 14;
  }

  .btn {
    width: 100%;
  }

  .about,
  .services {
    padding: 4rem 1rem;
  }

  .about-content {
    padding: 2rem 1.5rem;
  }

  .stats-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-image-placeholder {
    min-height: 300px;
    order: 2;
  }

  .stats-content {
    order: 1;
  }

  .stat-item {
    padding: 1.5rem 0;
  }

  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-title {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .testimonial-box {
    width: 320px;
    min-height: 350px;
    padding: 2rem 1.5rem;
  }

  .cta-section {
    padding: 4rem 1rem;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-title {
    font-size: 2rem;
    text-align: center;
  }

  .cta-subtitle {
    font-size: 0.875rem;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-form-heading {
    text-align: center;
  }

  .cta-form-row {
    grid-template-columns: 1fr;
  }


  .footer {
    padding: 2rem 1rem 1.5rem;
    margin-top: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-info-list {
    align-items: center;
  }

  .footer-info-list p {
    justify-content: center;
  }

  .footer-logo-image {
    height: 50px;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .footer-link-category {
    align-items: center;
    text-align: center;
  }

  .footer-category-heading {
    min-height: auto;
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-socials {
    align-items: center;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-title {
    text-align: center;
  }


  .menu-content {
    top: 70px;
    right: 1rem;
    left: 1rem;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 32px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 0.875rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Gradient Text Highlighting - Retro Miami */
.gradient-text {
  background: linear-gradient(135deg, #ffd1b3 0%, #FFA8D1 20%, #E8B4F5 40%, #D4A3F0 60%, #ffe9d4 80%, #FFB3D9 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Focus Styles - Remove outlines */
*:focus {
  outline: none !important;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
}

/* Field Error Styles */
.field-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

.form-input.error {
  border-color: #ef4444 !important;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-message,
.error-message,
.login-message {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.error-message {
  border-color: #ef4444;
}

/* Print Styles */
@media print {
  .background-container,
  .navbar,
  .menu-overlay {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .glass-panel {
    background: white;
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* Wizard Styles */
.wizard {
  position: relative;
}

.wizard-step {
  min-height: 400px;
}

.wizard-step-container {
  margin-bottom: 2rem;
}

.step-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 400;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: #FFFFFF;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-option {
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  user-select: none;
  background: var(--bg-tertiary);
  border-radius: 8px;
  position: relative;
}

.radio-option:hover {
  background: var(--bg-secondary);
  border-color: var(--text-primary);
}

.radio-option.selected {
  border: 2px solid var(--text-primary);
  background: var(--text-primary);
  color: #FFFFFF;
  font-weight: 400;
  box-shadow: var(--shadow-md);
}

.radio-option.selected:hover {
  background: var(--accent-green-dark);
  border-color: var(--accent-green-light);
}

.radio-option input[type="radio"]:checked + span {
  font-weight: 400;
}

/* Vinyl Color Grid */
.vinyl-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.vinyl-color-option {
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
}

.vinyl-color-option:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-dark);
}

.vinyl-color-option.selected {
  border: 2px solid var(--accent-green-light);
  background: transparent;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.vinyl-color-option.selected .vinyl-preview {
  border-color: var(--text-primary);
}

.vinyl-color-option.selected div {
  color: var(--text-primary) !important;
}

.vinyl-preview {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: #1a1a1a;
}

/* Label Options */
.label-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.label-option {
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
}

.label-option:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-dark);
}

.label-option.selected {
  border: 2px solid var(--accent-green-light);
  background: transparent;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.label-option.selected div {
  color: var(--text-primary) !important;
}

.label-preview {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: #ffffff;
}

/* Sleeve Options */
.sleeve-grid,
.sleeve-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.sleeve-option {
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
}

.sleeve-option:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-dark);
}

.sleeve-option.selected {
  border: 2px solid var(--accent-green-light);
  background: transparent;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.sleeve-option.selected div {
  color: var(--text-primary) !important;
}

/* Pages Grid */
.pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

.page-option {
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
}

.page-option:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-dark);
}

.page-option.selected {
  border: 2px solid var(--accent-green-light);
  background: transparent;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.page-option.selected div {
  color: var(--text-primary) !important;
}

/* Booklet Color Grid */
.booklet-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.booklet-color-option {
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
}

.booklet-color-option:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-dark);
}

.booklet-color-option.selected {
  border: 2px solid var(--accent-green-light);
  background: transparent;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.booklet-color-option.selected div {
  color: var(--text-primary) !important;
}

/* Finish Grid */
.finish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.finish-option {
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-secondary);
}

.finish-option:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-dark);
}

.finish-option.selected {
  border: 2px solid var(--accent-green-light);
  background: transparent;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.finish-option.selected div {
  color: var(--text-primary) !important;
}

/* Wizard Navigation */
.wizard-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.wizard-navigation .btn {
  flex: 1;
}

.wizard-navigation .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Price Display */
.price-display {
  margin-top: 2rem;
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.price-total {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

/* Review Summary */
.review-summary {
  padding: 2rem;
  margin-bottom: 2rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.summary-list {
  display: grid;
  gap: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

/* Configurator Pages */
.configurator-hero {
  padding: 2rem;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}

.configurator-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

/* Split-View Configurator Layout */
.configurator-container {
  display: flex;
  height: calc(100vh - var(--navbar-height));
  margin-top: var(--navbar-height);
  gap: 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.configurator-main {
  flex: 2;
  background: var(--bg-primary);
  padding: 2rem;
  overflow-y: auto;
  height: 100%;
  border-right: 1px solid var(--border-color);
}

.configurator-sidebar {
  flex: 1;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  padding: 2rem;
  overflow-y: auto;
  height: 100%;
  min-width: 350px;
  max-width: 400px;
}

/* Legacy support - hide showcase */
.configurator-showcase {
  display: none;
}

.configurator-options {
  width: 100%;
}

/* Configurator Summary Sidebar */
.configurator-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.summary-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0;
  width: 100%;
}

.summary-section {
  background: var(--bg-primary);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.summary-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0;
}

.summary-view-link {
  font-size: 0.875rem;
  color: var(--text-primary);
  text-decoration: underline;
  cursor: pointer;
}

.summary-view-link:hover {
  color: var(--text-secondary);
}

.summary-option-group {
  margin-bottom: 1.5rem;
}

.summary-option-group:last-child {
  margin-bottom: 0;
}

.summary-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.summary-help-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-tertiary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: help;
  font-weight: normal;
}

.summary-quantity-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-quantity-range {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.summary-input {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.875rem;
}

.summary-price-break {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.summary-select {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.875rem;
  cursor: pointer;
}

.summary-quote-group {
  margin-bottom: 1rem;
}

.summary-ship-date {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 500;
}

.summary-promo {
  margin: 1rem 0;
}

.summary-promo-link {
  font-size: 0.875rem;
  color: var(--text-primary);
  text-decoration: underline;
  cursor: pointer;
}

.summary-promo-link:hover {
  color: var(--text-secondary);
}

.summary-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0.5rem 0;
}

.summary-price-note {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.summary-payment-info {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 1rem;
  line-height: 1.5;
}

.summary-paypal-link {
  color: var(--text-primary);
  text-decoration: underline;
}

.summary-expanded {
  margin-top: 1.5rem;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.breakdown-label {
  color: var(--text-secondary);
}

.breakdown-price {
  color: var(--text-primary);
  font-weight: 500;
}

.configurator-progress {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.progress-bar-container {
  width: 100%;
  height: 4px;
  background: var(--bg-secondary);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.progress-bar-fill {
  height: 100%;
  background: var(--text-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.progress-text {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

/* Visual Showcase */
.vinyl-showcase {
  width: 100%;
  height: 100%;
  position: relative;
}

.vinyl-3d-preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.vinyl-3d-preview canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
}

/* Image-based vinyl preview */
.vinyl-image-preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
}

.vinyl-preview-container {
  position: relative;
  width: 95%;
  height: 95%;
  max-width: 900px;
  max-height: 900px;
  aspect-ratio: 1;
  margin: 0 auto;
  transition: width 0.4s ease, height 0.4s ease;
  min-width: 500px;
  min-height: 500px;
}

/* Format-based sizing */
.vinyl-preview-container.format-7 {
  width: 75%;
  height: 75%;
  min-width: 400px;
  min-height: 400px;
}

.vinyl-preview-container.format-10 {
  width: 85%;
  height: 85%;
  min-width: 450px;
  min-height: 450px;
}

.vinyl-preview-container.format-12 {
  width: 95%;
  height: 95%;
  min-width: 500px;
  min-height: 500px;
}

.vinyl-preview-container.format-double12 {
  width: 95%;
  height: 95%;
  min-width: 500px;
  min-height: 500px;
}

.vinyl-preview-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.4s ease, filter 0.4s ease;
  pointer-events: none;
}

/* Vinyl base layer */
.vinyl-base {
  z-index: 1;
  border-radius: 50%;
}

/* Vinyl color overlay layer (for solid color tinting) */
.vinyl-color-overlay {
  z-index: 2;
  border-radius: 50%;
  background-color: transparent;
  /* Create donut shape - mask out the center (label area) */
  /* The label is roughly 30% of the diameter, so we mask from center to ~15% radius */
  mask: radial-gradient(circle, transparent 15%, black 15%, black 50%, transparent 50%);
  -webkit-mask: radial-gradient(circle, transparent 15%, black 15%, black 50%, transparent 50%);
  /* Ensure overlay doesn't overflow */
  overflow: hidden;
}

/* Vinyl overlay layer (for special effects) */
.vinyl-overlay {
  z-index: 3;
  border-radius: 50%;
}

/* Label base layer */
.label-base {
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Label print overlay */
.label-print-overlay {
  z-index: 4;
  width: 99%;
  height: 99%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.showcase-package {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.4s ease;
}

.showcase-sleeve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.showcase-sleeve.gatefold {
  border-radius: 4px 0 0 4px;
}

.showcase-vinyl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.showcase-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: 25%;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
}

.showcase-inner-sleeve {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 30%;
  height: 80%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-inner-sleeve.visible {
  opacity: 1;
}

.showcase-booklet {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 25%;
  height: 30%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: var(--shadow-md);
}

.showcase-booklet.visible {
  opacity: 1;
}

.showcase-sticker {
  position: absolute;
  width: 8%;
  height: 8%;
  border-radius: 50%;
  background: var(--text-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-sticker.visible {
  opacity: 1;
}

.showcase-sticker.top-left {
  top: 10%;
  left: 10%;
}

.showcase-sticker.top-right {
  top: 10%;
  right: 10%;
}

.showcase-sticker.bottom-left {
  bottom: 10%;
  left: 10%;
}

.showcase-sticker.bottom-right {
  bottom: 10%;
  right: 10%;
}

.showcase-shrinkwrap {
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.showcase-shrinkwrap.visible {
  opacity: 0.6;
}

/* Configurators Page */
.configurators-page {
  padding-top: calc(var(--navbar-height) + 4rem);
  min-height: calc(100vh - var(--navbar-height));
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
}

.configurators-section {
  padding: 2rem;
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
}

.configurators-container {
  max-width: 1400px;
  margin: 0 auto;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.configurators-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.configurators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.configurator-panel {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.configurator-panel:hover {
  border-color: var(--accent-gray);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.configurator-panel.configurator-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.configurator-panel.configurator-disabled:hover {
  transform: none;
  border-color: var(--border-color);
}

.configurator-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.configurator-icon img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.configurator-number {
  font-size: 1.5rem;
  font-weight: 400;
  margin-right: 0.5rem;
}

.configurator-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.configurator-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1rem;
}

/* Contact Page */
.contact-page {
  padding-top: var(--navbar-height);
  min-height: calc(100vh - var(--navbar-height));
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding-bottom: 2rem;
  background: var(--bg-primary);
}

.contact-section {
  width: 100%;
  padding: 2rem 2rem;
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.contact-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form .form-group label {
  display: block;
  color: var(--text-primary);
  font-weight: 400;
  font-size: 0.875rem;
}

.contact-form .form-input {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 1rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.contact-form .form-input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-form .form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-submit {
  background: #000000;
  border: 1px solid #000000;
  color: #FFFFFF;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
  border-radius: 8px;
}

.btn-submit:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 0;
}

.work-hours {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.live-clock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clock-label {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
}

.clock-time {
  font-size: 18px;
  font-weight: 400;
  background: linear-gradient(135deg, #4A4A4A 0%, #1A1A1A 25%, #000000 50%, #1A1A1A 75%, #4A4A4A 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  animation: gradientShift 3s ease infinite;
}

.contact-divider {
  height: 1px;
  background: var(--border-color);
  width: 100%;
}

.contact-info-label {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 32px;
  font-weight: 400;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  line-height: 1.6;
}

.office-side-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

/* Email and phone sections need row layout for icon */
.contact-info-value.email-copy,
.contact-info-value.phone-copy {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.contact-info-value > div {
  display: block;
}

.contact-copy-icon {
  background: none;
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-copy-icon:hover {
  color: #CCCCCC;
  transform: scale(1.1);
}

.contact-copy-icon svg {
  width: 16px;
  height: 16px;
}

.email-copy {
  cursor: pointer;
  user-select: none;
}

.email-text {
  flex: 0 0 auto;
}

.phone-copy {
  cursor: pointer;
  user-select: none;
}

.phone-text {
  flex: 0 0 auto;
}

.copy-button {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-tertiary);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.copy-button:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
  transform: scale(1.1);
}

.copy-button svg {
  width: 18px;
  height: 18px;
}

.copy-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2000;
}

.copy-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .contact-page {
    min-height: auto;
    padding-top: calc(var(--navbar-height) + 2rem);
  }

  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-container {
    gap: 3rem;
  }

  .contact-heading {
    margin-bottom: 2rem;
  }

  .contact-form {
    gap: 1.5rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-item {
    padding: 1.5rem 0;
  }

  .copy-notification {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}


/* Responsive Configurator */
@media (max-width: 1024px) {
  .configurator-container {
    flex-direction: column;
  }

  .configurator-main {
    flex: 1;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .configurator-sidebar {
    flex: 1;
    border-left: none;
    border-top: 1px solid var(--border-color);
    min-width: 100%;
    max-width: 100%;
  }
}

/* Responsive Wizard */
@media (max-width: 768px) {
  .wizard {
    padding: 1.5rem;
  }

  .vinyl-color-grid,
  .label-options,
  .sleeve-grid,
  .sleeve-options,
  .pages-grid,
  .booklet-color-grid,
  .finish-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .radio-group {
    flex-direction: column;
  }

  .radio-option {
    width: 100%;
  }

  .wizard-navigation {
    flex-direction: column;
  }

  .wizard-navigation .btn {
    width: 100%;
  }

  .configurators-grid {
    grid-template-columns: 1fr;
  }

  .price-total {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .wizard {
    padding: 1rem;
  }

  .step-title {
    font-size: 1.25rem;
  }

  .vinyl-color-grid,
  .label-options,
  .sleeve-grid,
  .sleeve-options {
    grid-template-columns: 1fr;
  }
}

/* Vinyl Color Palette Hover Effects */
.color-palette-option {
  position: relative;
}

.color-preview-circle {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.color-palette-option:hover .color-preview-circle {
  border-radius: 12px;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-palette-option.selected .color-preview-circle {
  border-radius: 12px;
  border-width: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== Form Styling Classes ===== */

/* Form Groups */
.form-group-spaced {
  margin-bottom: 1.5rem;
}

.form-group-large-spaced {
  margin-bottom: 2rem;
}

/* Form Labels */
.form-label-primary {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.form-label-large {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Step Titles */
.step-title-primary {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

/* Field Errors */
.field-error-text {
  display: none;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.field-error-text.show {
  display: block;
}

/* Form Inputs */
.form-input-primary {
  width: 100%;
  padding: 0.875rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
}

.form-input-primary:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.form-input-error {
  border-color: #ef4444 !important;
}

/* Textarea */
.form-textarea-primary {
  width: 100%;
  padding: 0.875rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.form-textarea-primary:focus {
  outline: none;
  border-color: var(--text-primary);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

/* ===== Grid Layouts ===== */

/* Auto-fit grid (for color options, vinyl colors) */
.grid-auto-fit-140 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.grid-auto-fit-180 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.grid-auto-fit-200 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.grid-auto-fit-150 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.grid-auto-fit-100 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

/* Flex layouts */
.flex-row-gap {
  display: flex;
  gap: 1rem;
}

.flex-row-gap-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.flex-row-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ===== Descriptive Text ===== */

.text-small {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.text-secondary-small {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

/* ===== Helper Classes ===== */

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

.text-center { text-align: center; }
.cursor-pointer { cursor: pointer; }
.w-full { width: 100%; }
.flex-1 { flex: 1; }
/* Navbar padding and icon updates */
.navbar-container { padding: 0 2rem !important; }
.account-button { padding: 0.5rem !important; }
.account-button svg { fill: none !important; stroke: currentColor !important; filter: none !important; }

.account-button svg { width: 40px !important; height: 40px !important; }

.account-button { width: 48px !important; height: 48px !important; }

.account-button svg { width: 24px !important; height: 24px !important; }

/* ===== Account Page Styles ===== */
.account-page {
  min-height: 100vh;
  background: var(--bg-primary);
  padding-top: var(--navbar-height);
  padding-bottom: 4rem;
}

.account-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.account-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.account-sidebar {
  position: sticky;
  top: calc(var(--navbar-height) + 2rem);
}

.account-user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}

.account-user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: transparent;
  color: var(--text-tertiary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.account-main {
  flex: 1;
}

.account-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.account-tabs-left {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.account-user-name {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.account-user-divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
  margin: 1rem 0;
}

.account-user-email-wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.account-email-label {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.account-user-email {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 400;
}

.account-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
  font-family: inherit;
}

.account-tab:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-primary);
}

.account-tab.active {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.account-tab-logout {
  color: #ef4444 !important;
  border-color: #ef4444 !important;
}

.account-tab-logout:hover {
  background: #ef4444 !important;
  color: var(--bg-primary) !important;
  border-color: #ef4444 !important;
}

.account-tab-logout.active {
  background: #ef4444 !important;
  color: var(--bg-primary) !important;
  border-color: #ef4444 !important;
}

.btn-logout-confirm {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  color: white !important;
}

.btn-logout-confirm:hover {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.account-content {
  width: 100%;
}

.account-tab-content {
  display: none;
}

.account-tab-content.active {
  display: block;
}

.account-section-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.account-settings-section {
  margin-bottom: 3rem;
}

.account-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.account-settings-header .account-section-title {
  margin-bottom: 0;
}

.account-settings-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.account-setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.account-setting-item:hover {
  border-color: var(--border-color-dark);
  box-shadow: var(--shadow-sm);
}

.setting-info {
  flex: 1;
  margin-right: 1.5rem;
}

.setting-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.setting-description {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 400;
  margin: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-primary);
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
  background-color: var(--bg-primary);
}

.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Account Info Section */
.account-info-section {
  margin-bottom: 2rem;
}

.account-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.info-row:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.info-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.info-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 400;
}

/* Orders Section */
.orders-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.order-card:hover {
  border-color: var(--border-color-dark);
  box-shadow: var(--shadow-sm);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.order-id {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
}

.order-date {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.order-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.order-status {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.order-total {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 400;
}

/* Configurations Section */
.configurations-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.configuration-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.configuration-card:hover {
  border-color: var(--border-color-dark);
  box-shadow: var(--shadow-sm);
}

.configuration-header {
  flex: 1;
}

.configuration-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.configuration-date {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.configuration-actions {
  display: flex;
  gap: 0.75rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-tertiary);
  font-size: 1rem;
  font-weight: 400;
}

/* Password Change Section */
.password-change-section {
  margin-top: 3rem;
}

.password-form-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.password-form-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.password-form-full .form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.password-form-full .form-group .form-label {
  margin-bottom: 0.5rem;
}

.password-form-full .form-group .form-input {
  flex: 0 0 auto;
  height: auto;
}

.password-form-full .form-group:last-of-type {
  grid-column: 1 / -1;
}

.password-form-full #passwordError,
.password-form-full #passwordSuccess {
  grid-column: 1 / -1;
}

.password-form-full #passwordChangeBtn {
  grid-column: 1 / -1;
  width: auto;
  max-width: 200px;
}

.password-form-full .form-group {
  margin-bottom: 0;
}

.password-form .form-group {
  margin-bottom: 1.5rem;
}

.password-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 400;
}

.password-form .form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.password-form .form-input:focus {
  outline: none;
  border-color: var(--text-primary);
}

.password-form .form-hint {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.password-form-full .form-hint {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-success {
  color: #4ade80;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .account-sidebar {
    position: static;
  }

  .account-user-info {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    align-items: center;
  }

  .account-user-avatar {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .account-user-divider {
    display: none;
  }

  .account-user-email-wrapper {
    flex-direction: row;
    text-align: left;
    gap: 0.5rem;
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
  }

  .password-form-full {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .account-tabs {
    width: 100%;
    justify-content: flex-start;
  }

  .account-tab {
    flex: 1;
    min-width: 0;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .account-setting-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .setting-info {
    margin-right: 0;
  }

  .order-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .configuration-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .configuration-actions {
    width: 100%;
  }

  .configuration-actions .btn {
    width: 100%;
  }
}
