/* ============================================
   PRINTFORGE — 3D PRINTING E-COMMERCE STYLES
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a24;
  --bg-card-hover: #22222e;
  --bg-input: #0f0f18;

  --accent-cyan: #00d4ff;
  --accent-cyan-dim: #00a8cc;
  --accent-orange: #ff6b35;
  --accent-purple: #a855f7;

  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 212, 255, 0.3);

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --container-width: 1280px;
  --nav-height: 80px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-cyan-dim);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* ---- Selection ---- */
::selection {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* ---- Container ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dim));
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Glow Pulse Animation for Primary Buttons */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.2); }
}

.btn-primary {
  animation: glowPulse 2s ease-in-out infinite;
}

.btn-primary:hover {
  animation: none;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width var(--transition-base);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.cart-btn:hover {
  background: var(--bg-card-hover);
  color: var(--accent-cyan);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--accent-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--transition-fast);
}

.cart-count.show {
  transform: scale(1);
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  transition: color var(--transition-fast);
}

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

/* ============================================
   CART SIDEBAR
   ============================================ */

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.cart-close:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 12px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-item-price {
  color: var(--accent-cyan);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border-radius: 4px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

.cart-item-qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

.cart-item-remove {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: var(--accent-orange);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.cart-total span:last-child {
  font-weight: 700;
  color: var(--accent-cyan);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cart-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   PAGES & SECTIONS
   ============================================ */

.page {
  display: none;
  padding-top: var(--nav-height);
  min-height: 100vh;
  animation: fadeIn 0.4s ease;
}

.page.active {
  display: block;
}

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

.section {
  padding: 100px 0;
}

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  animation: slideUp 0.8s ease;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  animation: slideUp 0.8s ease 0.6s both;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-cyan);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  color: var(--accent-cyan);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 8px;
}

/* ============================================
   CATEGORIES
   ============================================ */

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

.category-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  overflow: hidden;
  animation: fadeInUp 0.6s ease both;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

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

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.category-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(168, 85, 247, 0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-cyan);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

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

.category-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-base);
}

.category-card:hover .category-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease both;
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.product-image {
  aspect-ratio: 1;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--accent-orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 1;
}

.product-badge.new {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

.product-content {
  padding: 20px;
}

.product-category {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.price-old {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.product-actions .btn {
  flex: 1;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-section {
  background: var(--bg-secondary);
}

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

.step-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  text-align: center;
  animation: fadeInUp 0.6s ease both;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-cyan);
  opacity: 0.1;
  line-height: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(168, 85, 247, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--accent-orange);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* ============================================
   SHOP PAGE
   ============================================ */

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 40px 0;
}

@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

.shop-filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-group {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.filter-group h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--accent-cyan);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.filter-checkbox:hover {
  color: var(--text-primary);
}

.filter-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-cyan);
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--accent-cyan);
}

.price-value {
  font-weight: 600;
  color: var(--accent-cyan);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.results-count {
  color: var(--text-secondary);
}

.shop-sort {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
}

/* ============================================
   CUSTOM PRINTING PAGE
   ============================================ */

.custom-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  padding: 40px 0;
}

@media (max-width: 1000px) {
  .custom-layout {
    grid-template-columns: 1fr;
  }
}

.custom-wizard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.wizard-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.wizard-step.active {
  display: block;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.step-indicator {
  width: 40px;
  height: 40px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.step-indicator.active {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.step-header h3 {
  font-size: 1.4rem;
}

/* Upload Zone */
.upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.05);
}

.upload-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(168, 85, 247, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.upload-icon svg {
  width: 40px;
  height: 40px;
}

.upload-zone h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.upload-zone p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.upload-formats {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.upload-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--accent-cyan);
}

.upload-preview svg {
  width: 32px;
  height: 32px;
}

/* Material Grid */
.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.material-card {
  position: relative;
  padding: 20px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.material-card:hover {
  border-color: var(--accent-cyan);
}

.material-card:has(input:checked) {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.material-card input {
  position: absolute;
  opacity: 0;
}

.material-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.material-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.material-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.material-price {
  font-weight: 600;
  color: var(--accent-cyan);
  margin-top: 8px;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group label svg {
  width: 16px;
  height: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

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

/* Quote Summary */
.quote-summary {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.quote-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.quote-item:last-child {
  border-bottom: none;
}

.quote-item.total {
  font-size: 1.2rem;
  padding-top: 16px;
}

.quote-item.total strong {
  color: var(--accent-cyan);
}

.quote-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.quote-note svg {
  width: 18px;
  height: 18px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Wizard Nav */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

/* Preview Panel */
.custom-preview {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
}

.preview-box {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

#previewCanvas {
  width: 100%;
  height: 100%;
}

.preview-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
}

.preview-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.5;
}

.preview-info {
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.preview-info h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--accent-cyan);
}

.preview-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-stat {
  display: flex;
  justify-content: space-between;
}

.preview-stat .label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.preview-stat .value {
  font-weight: 600;
}

/* ============================================
   TOOLS PAGE
   ============================================ */

.tools-layout {
  padding: 40px 0;
}

.tools-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.tool-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.tool-tab:hover {
  border-color: var(--accent-cyan);
  color: var(--text-primary);
}

.tool-tab.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
}

.tool-tab svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   PARTS PAGE
   ============================================ */

.parts-layout {
  padding: 40px 0;
}

.parts-search {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-box {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.search-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.search-box input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.printer-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.printer-select label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.printer-select select {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  min-width: 220px;
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.part-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.part-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.part-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.part-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.part-compatibility {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.part-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.parts-cta {
  margin-top: 40px;
}

.cta-card {
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-xl);
}

.cta-card svg {
  width: 48px;
  height: 48px;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ============================================
   MODAL
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.modal-content h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

/* Success Modal */
.success-content {
  text-align: center;
  max-width: 450px;
}

.success-animation {
  position: relative;
  margin-bottom: 32px;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  from {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

.success-icon svg {
  width: 50px;
  height: 50px;
  color: var(--bg-primary);
}

.print-animation {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
}

.print-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
  animation: printLayer 2s ease infinite;
}

@keyframes printLayer {
  0% { height: 0; }
  50% { height: 100%; }
  100% { height: 100%; }
}

.success-content h2 {
  margin-bottom: 12px;
}

.success-content p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.success-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  padding: 40px 0;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checkout-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.checkout-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.checkout-section h3 svg {
  color: var(--accent-cyan);
}

.payment-methods {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.payment-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-card:hover {
  border-color: var(--accent-cyan);
}

.payment-card:has(input:checked) {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.payment-card input {
  display: none;
}

.card-fields {
  display: grid;
  grid-template-columns: 1fr 140px 100px;
  gap: 16px;
}

@media (max-width: 600px) {
  .card-fields {
    grid-template-columns: 1fr;
  }
}

/* Checkout Summary */
.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.checkout-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  max-height: 300px;
  overflow-y: auto;
}

.summary-item {
  display: flex;
  gap: 12px;
}

.summary-item-image {
  width: 60px;
  height: 60px;
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.summary-item-details {
  flex: 1;
}

.summary-item-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.summary-item-qty {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-item-price {
  font-weight: 600;
  color: var(--accent-cyan);
}

.summary-totals {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.summary-row.total span:last-child {
  color: var(--accent-cyan);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--accent-cyan);
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.footer-newsletter h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-newsletter p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  box-shadow: var(--shadow-card);
  animation: slideInToast 0.3s ease;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast.success {
  border-color: rgba(0, 212, 255, 0.5);
}

.toast.success svg {
  color: var(--accent-cyan);
}

.toast.error {
  border-color: rgba(255, 107, 53, 0.5);
}

.toast.error svg {
  color: var(--accent-orange);
}

.toast-message {
  flex: 1;
  font-size: 0.95rem;
}

.toast-close {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.toast-close:hover {
  color: var(--text-primary);
}

/* ============================================
   ANIMATIONS - SCROLL TRIGGERED
   ============================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--bg-card);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .step-card {
    padding: 24px;
  }

  .checkout-summary {
    position: static;
  }

  .modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .custom-wizard {
    padding: 24px;
  }

  .payment-methods {
    flex-direction: column;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   DESIGN LIBRARY PAGE
   ============================================ */

.designs-hero {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.designs-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .designs-promo {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.promo-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

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

.promo-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .promo-actions {
    justify-content: center;
  }
}

.promo-visual {
  height: 350px;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#designCanvas {
  width: 100%;
  height: 100%;
}

.designs-filter {
  display: flex;
  gap: 12px;
}

.designs-filter select {
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
}

.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.design-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.design-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.design-card-image {
  aspect-ratio: 16/10;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

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

.design-card:hover .design-card-image img {
  transform: scale(1.05);
}

.design-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
}

.design-card-badge.trending {
  background: var(--accent-orange);
  color: white;
}

.design-card-content {
  padding: 20px;
}

.design-card-category {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.design-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.design-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.design-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.design-card-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.design-card-author span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.design-card-price {
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Trending Slider */
.designs-trending {
  background: var(--bg-secondary);
}

.trending-slider {
  overflow-x: auto;
  padding-bottom: 20px;
}

.trending-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.trending-card {
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.trending-card:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.trending-card-image {
  aspect-ratio: 1;
  background: var(--bg-primary);
  overflow: hidden;
}

.trending-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trending-card-content {
  padding: 16px;
}

.trending-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-orange);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  margin-bottom: 8px;
}

.trending-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trending-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Designers Grid */
.designers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.designer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.designer-card:hover {
  border-color: var(--border-glow);
}

.designer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--accent-cyan);
}

.designer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.designer-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.designer-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.designer-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.designer-stat {
  text-align: center;
}

.designer-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-cyan);
}

.designer-stat span {
  font-size: 0.8rem;
}

/* Design Modal */
.design-modal-content {
  max-width: 1000px;
  width: 100%;
}

.design-modal-body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

@media (max-width: 800px) {
  .design-modal-body {
    grid-template-columns: 1fr;
  }
}

.design-modal-preview {
  aspect-ratio: 4/3;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

#designModalCanvas {
  width: 100%;
  height: 100%;
}

.design-modal-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.design-category-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent-cyan);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
}

.design-modal-info h2 {
  font-size: 1.8rem;
}

.design-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
}

.author-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.author-rating svg {
  width: 14px;
  height: 14px;
  color: var(--accent-orange);
}

.design-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.design-stats-grid {
  display: flex;
  gap: 20px;
  padding: 16px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
}

.design-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.design-stat svg {
  width: 18px;
  height: 18px;
  color: var(--accent-cyan);
}

.design-files h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.file-formats {
  display: flex;
  gap: 8px;
}

.format-badge {
  padding: 4px 10px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: monospace;
}

.design-pricing {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.price-option {
  position: relative;
  cursor: pointer;
}

.price-option input {
  position: absolute;
  opacity: 0;
}

.option-content {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.price-option input:checked + .option-content {
  border-color: var(--accent-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.option-name {
  font-weight: 500;
}

.option-price {
  font-weight: 700;
  color: var(--accent-cyan);
}

.modal-subtitle {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MATERIAL CALCULATOR PAGE
   ============================================ */

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  padding: 40px 0;
}

@media (max-width: 1000px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }
}

.calculator-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.calc-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.calc-card h3 svg {
  color: var(--accent-cyan);
}

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .calc-inputs {
    grid-template-columns: 1fr;
  }
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-input-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.calc-input-group input {
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.calc-input-group input:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.shape-presets {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.shape-presets span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.preset-btn {
  padding: 8px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.preset-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.calc-settings {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.setting-row label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.setting-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.setting-control input[type="range"] {
  width: 150px;
  accent-color: var(--accent-cyan);
}

.setting-control span {
  min-width: 45px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.setting-row select {
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  min-width: 200px;
}

.setting-row input[type="number"] {
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  width: 100px;
}

.calc-results {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
  border-color: rgba(0, 212, 255, 0.3);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 500px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-item {
  padding: 16px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
}

.result-item.highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.result-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.result-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.result-item.highlight .result-value {
  font-size: 2rem;
}

.time-breakdown {
  padding: 20px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.time-breakdown h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.time-bar {
  height: 8px;
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.time-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 4px;
  transition: width var(--transition-slow);
}

.time-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.time-labels strong {
  color: var(--text-primary);
}

.calculator-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.tips-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.slicer-presets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.slicer-btn {
  padding: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.slicer-btn:hover {
  border-color: var(--accent-cyan);
}

.slicer-btn.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
}

.saved-calcs {
  max-height: 300px;
  overflow-y: auto;
}

.saved-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.saved-item {
  padding: 12px;
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.saved-item:hover {
  background: var(--bg-card-hover);
}

.saved-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.saved-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   PRINT TRACKING PAGE
   ============================================ */

.track-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  padding: 40px 0;
}

@media (max-width: 1000px) {
  .track-layout {
    grid-template-columns: 1fr;
  }
}

.track-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.track-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.track-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.track-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-header h3 {
  font-size: 1.3rem;
}

.track-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.15);
  border-radius: 100px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.status-dot.printing {
  background: var(--accent-cyan);
}

.status-dot.completed {
  background: #22c55e;
}

.status-dot.shipping {
  background: var(--accent-orange);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.live-feed {
  margin-bottom: 24px;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.feed-header h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.feed-controls {
  display: flex;
  gap: 8px;
}

.feed-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.feed-btn:hover {
  border-color: var(--accent-cyan);
}

.feed-btn.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
}

.feed-btn svg {
  width: 14px;
  height: 14px;
}

.feed-viewer {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-primary);
}

.feed-viewer img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.feed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.overlay-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.layer-info,
.time-info {
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  font-size: 0.85rem;
}

.overlay-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 3px;
  transition: width var(--transition-slow);
}

.progress-percent {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 45px;
}

.feed-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-badge {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s ease infinite;
}

.print-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .print-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.print-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
}

.print-stat svg {
  width: 24px;
  height: 24px;
  color: var(--accent-cyan);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-content .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-content .stat-value {
  font-weight: 700;
  font-size: 1.1rem;
}

/* Progress Timeline */
.progress-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item.completed:not(:last-child)::before {
  background: var(--accent-cyan);
}

.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-item.completed .timeline-icon {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
}

.timeline-item.active .timeline-icon {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
  animation: pulse 2s ease infinite;
}

.timeline-icon svg {
  width: 18px;
  height: 18px;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-title {
  font-weight: 600;
  font-size: 1rem;
}

.timeline-item:not(.completed):not(.active) .timeline-title {
  color: var(--text-muted);
}

.timeline-time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Track Sidebar */
.track-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.print-preview {
  aspect-ratio: 1;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.print-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.print-details h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.print-details p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notification {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.notification svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent-cyan);
  margin-top: 2px;
}

.notification.success svg {
  color: #22c55e;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-hero {
  padding: 40px 0 60px;
}

.featured-post {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (max-width: 900px) {
  .featured-post {
    grid-template-columns: 1fr;
  }
}

.featured-image {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.featured-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .featured-content {
    padding: 24px;
  }
}

.post-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.featured-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-content > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.post-meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.blog-categories {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.category-pill {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.category-pill:hover {
  border-color: var(--accent-cyan);
}

.category-pill.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.blog-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 24px;
}

.blog-card .post-category {
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .post-meta {
  font-size: 0.85rem;
}

.blog-card .post-meta img {
  width: 28px;
  height: 28px;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--bg-secondary);
}

.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
}

@media (max-width: 800px) {
  .newsletter-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
}

.newsletter-content h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

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

.newsletter-form-inline {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .newsletter-form-inline {
    flex-direction: column;
    width: 100%;
  }
}

.newsletter-form-inline input {
  padding: 14px 20px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  min-width: 280px;
}

@media (max-width: 600px) {
  .newsletter-form-inline input {
    min-width: 100%;
  }
}

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

/* Blog Modal */
.blog-modal-content {
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.blog-post {
  padding: 0;
}

.post-header {
  margin-bottom: 24px;
}

.post-header .post-category {
  margin-bottom: 16px;
}

.post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-featured-image {
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.post-content {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.post-content h3 {
  color: var(--text-primary);
  margin: 30px 0 15px;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 16px;
}

.post-tags {
  display: flex;
  gap: 8px;
}

.tag {
  padding: 6px 12px;
  background: var(--bg-card);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.post-actions {
  display: flex;
  gap: 12px;
}

/* ============================================
   USER MENU & AUTHENTICATION
   ============================================ */

.user-menu {
  position: relative;
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.user-btn:hover {
  border-color: var(--accent-cyan);
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.user-menu:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  padding: 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-align: left;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.dropdown-item svg {
  width: 18px;
  height: 18px;
}

/* Auth Modals */
.auth-modal-content {
  max-width: 450px;
  padding: 40px;
}

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

.auth-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(168, 85, 247, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.auth-icon svg {
  width: 32px;
  height: 32px;
}

.auth-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

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

.password-input {
  position: relative;
}

.password-input input {
  padding-right: 48px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.toggle-password:hover {
  color: var(--accent-cyan);
}

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 500px) {
  .form-row-split {
    grid-template-columns: 1fr;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-cyan);
}

.terms-label {
  align-items: flex-start;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.terms-label a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.forgot-link {
  color: var(--accent-cyan);
  font-size: 0.9rem;
  transition: opacity var(--transition-fast);
}

.forgot-link:hover {
  opacity: 0.8;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

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

.auth-footer button {
  color: var(--accent-cyan);
  font-weight: 600;
  transition: opacity var(--transition-fast);
}

.auth-footer button:hover {
  opacity: 0.8;
}

.divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
}

.divider span {
  position: relative;
  background: var(--bg-secondary);
  padding: 0 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.social-login {
  margin-top: 24px;
}

.social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--text-primary);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

/* Account Dropdown (when logged in) */
.account-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  z-index: 100;
  overflow: hidden;
}

.account-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.account-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.account-info {
  display: flex;
  flex-direction: column;
}

.account-name {
  font-weight: 600;
  font-size: 1rem;
}

.account-email {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.account-menu {
  padding: 8px;
}

.account-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

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

.account-menu-item svg {
  width: 18px;
  height: 18px;
}

.account-footer {
  padding: 16px;
  border-top: 1px solid var(--border-color);
}

/* ============================================
   MY ACCOUNT PAGE
   ============================================ */

.account-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 40px 0;
}

@media (max-width: 900px) {
  .account-page-layout {
    grid-template-columns: 1fr;
  }
}

.account-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.account-profile-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid var(--accent-cyan);
}

.account-profile-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.account-profile-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.member-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
}

.account-nav {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.account-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--text-secondary);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.account-nav-item:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.account-nav-item.active {
  background: rgba(0, 212, 255, 0.1);
  border-left-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.account-nav-item svg {
  width: 20px;
  height: 20px;
}

.account-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.account-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.account-section h3 svg {
  color: var(--accent-cyan);
}

.profile-form,
#addressForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-form .form-group,
#addressForm .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-form label,
#addressForm label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.profile-form input,
#addressForm input,
#addressForm select {
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.profile-form input:focus,
#addressForm input:focus,
#addressForm select:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.toggle-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.toggle-setting:last-child {
  border-bottom: none;
}

.toggle-label {
  display: flex;
  flex-direction: column;
}

.toggle-label strong {
  font-size: 1rem;
  margin-bottom: 4px;
}

.toggle-label small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.toggle-input {
  width: 50px;
  height: 28px;
  accent-color: var(--accent-cyan);
}

.danger-zone {
  border-color: rgba(255, 107, 53, 0.3);
}

.danger-zone h3 {
  color: var(--accent-orange);
}

.danger-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.danger-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-md);
}

.btn-danger {
  background: var(--accent-orange);
  color: white;
}

.btn-danger:hover {
  background: #e55a2b;
}

/* ============================================
   MY ORDERS PAGE
   ============================================ */

.orders-layout {
  padding: 40px 0;
}

.orders-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.order-filter {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.order-filter:hover {
  border-color: var(--accent-cyan);
}

.order-filter.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.order-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-id {
  font-weight: 600;
  font-family: var(--font-display);
}

.order-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.order-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

.order-status.printing {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent-cyan);
}

.order-status.shipped {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-purple);
}

.order-status.delivered {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.order-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease infinite;
}

.order-items {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.order-item img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-primary);
}

.order-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-item .item-name {
  font-weight: 600;
}

.order-item .item-details {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.item-price {
  font-weight: 600;
  color: var(--accent-cyan);
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.order-total {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.order-total strong {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.order-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tracking-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tracking-number svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SAVED ITEMS PAGE
   ============================================ */

.saved-layout {
  padding: 40px 0;
}

.saved-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.saved-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.saved-tab:hover {
  border-color: var(--accent-cyan);
}

.saved-tab.active {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
}

.saved-tab svg {
  width: 18px;
  height: 18px;
}

.saved-content {
  min-height: 400px;
}

.saved-section {
  display: none;
}

.saved-section.active {
  display: block;
}

.saved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.saved-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.saved-item:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.saved-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.saved-item-info {
  padding: 16px;
}

.saved-item-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.saved-author,
.saved-category {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.saved-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.saved-item-actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}

.saved-item-actions .btn {
  flex: 1;
}

.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition-fast);
  padding: 0;
}

.btn-icon:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.saved-calc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.saved-calc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.saved-calc-item:hover {
  border-color: var(--border-glow);
}

.calc-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(168, 85, 247, 0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

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

.calc-info {
  flex: 1;
}

.calc-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.calc-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.calc-actions {
  display: flex;
  gap: 8px;
}

/* ============================================
   SETTINGS PAGE
   ============================================ */

.settings-layout {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.settings-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.settings-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.settings-section h3 svg {
  color: var(--accent-cyan);
}

.settings-section form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.settings-section .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.settings-section label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.settings-section input,
.settings-section select {
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.settings-section input:focus,
.settings-section select:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.payment-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.card-icon {
  width: 50px;
  height: 35px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

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

.card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-number {
  font-weight: 600;
  font-family: monospace;
}

.card-expiry {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card-badge {
  padding: 4px 10px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
}
