/* ============================================
   HOBBYZONE - VINTAGE RETRO DESIGN SYSTEM
   Vintage and retro-inspired creative hobby store
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  color: #2C1810;
  background: #F5E6D3;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ============================================
   VINTAGE RETRO COLOR SYSTEM
   ============================================ */

:root {
  /* Primary Vintage Red */
  --primary: #C41E2A;
  --primary-dark: #A81823;
  --primary-light: #D94450;
  
  /* Vintage Secondary Colors */
  --secondary: #D4A574;
  --accent: #F5E6D3;
  --cream: #FFF8E7;
  
  /* Retro Palette */
  --mustard: #E8B95E;
  --teal: #4A7C7E;
  --rust: #B85C38;
  --sage: #8FA387;
  
  /* Neutrals - Vintage Tones */
  --dark: #2C1810;
  --medium: #5D4E37;
  --light: #E8DCC4;
  --white: #FFFEF9;
  
  /* Functional Colors */
  --success: #6B8E23;
  --warning: #CD853F;
  --error: #8B4513;
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Typography Scale */
  --text-xs: 14px;
  --text-sm: 16px;
  --text-md: 18px;
  --text-lg: 24px;
  --text-xl: 32px;
  --text-xxl: 48px;
  
  /* Shadows - Vintage Style */
  --shadow-sm: 2px 2px 0px rgba(44, 24, 16, 0.3);
  --shadow-md: 4px 4px 0px rgba(44, 24, 16, 0.3);
  --shadow-lg: 6px 6px 0px rgba(44, 24, 16, 0.3);
  
  /* Border Radius - Retro */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   TYPOGRAPHY - VINTAGE RETRO STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: bold;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: var(--text-xxl);
  color: var(--primary);
  text-shadow: 3px 3px 0px rgba(212, 165, 116, 0.5);
}

h2 {
  font-size: var(--text-xl);
  color: var(--dark);
  border-bottom: 3px solid var(--mustard);
  padding-bottom: var(--space-sm);
  display: inline-block;
}

h3 {
  font-size: var(--text-lg);
  color: var(--medium);
}

h4 {
  font-size: var(--text-md);
}

p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  color: var(--medium);
}

.hero-subtitle {
  font-size: var(--text-md);
  font-style: italic;
  color: var(--medium);
}

.highlight {
  background: var(--mustard);
  padding: var(--space-xs) var(--space-sm);
  display: inline-block;
  font-weight: bold;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transform: rotate(-1deg);
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   HEADER - VINTAGE STYLE
   ============================================ */

header {
  background: var(--cream);
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 4px 0 rgba(44, 24, 16, 0.1);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Georgia', serif;
  font-size: var(--text-lg);
  font-weight: bold;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: var(--text-sm);
  color: var(--dark);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-xs) var(--space-sm);
  border: 2px solid transparent;
  transition: var(--transition-normal);
}

.main-nav a:hover {
  color: var(--primary);
  border-bottom: 2px solid var(--mustard);
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - VINTAGE STYLE
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 1100;
  background: var(--primary);
  color: var(--white);
  font-size: var(--text-lg);
  padding: var(--space-sm);
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-md);
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
}

.mobile-menu-toggle:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--cream);
  border-left: 4px solid var(--primary);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  padding: var(--space-xxl) var(--space-lg);
  transition: right var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: var(--text-xl);
  color: var(--dark);
  background: var(--mustard);
  border: 3px solid var(--dark);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.mobile-menu-close:hover {
  background: var(--rust);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.mobile-nav a {
  font-size: var(--text-md);
  color: var(--dark);
  font-weight: bold;
  text-transform: uppercase;
  padding: var(--space-sm);
  border: 2px solid var(--dark);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.mobile-nav a:hover {
  background: var(--mustard);
  transform: translateX(-5px);
}

/* ============================================
   BUTTONS - VINTAGE RETRO STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--dark);
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  font-family: 'Georgia', serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(44, 24, 16, 0.4);
}

.btn-secondary {
  background: var(--mustard);
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--secondary);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(44, 24, 16, 0.4);
}

.btn-small {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.cta-center {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   HERO SECTION - VINTAGE STYLE
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  border-bottom: 4px solid var(--mustard);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--mustard);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
}

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

.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: var(--text-md);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease;
}

.hero-statement {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--primary);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--white);
  border: 3px dashed var(--mustard);
  display: inline-block;
}

.breadcrumbs {
  margin-top: var(--space-md);
  font-size: var(--text-xs);
  color: var(--medium);
}

.breadcrumbs a:hover {
  color: var(--primary);
  text-decoration: underline;
}

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

/* ============================================
   CARDS - VINTAGE RETRO STYLE
   ============================================ */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: var(--space-xl);
}

.benefit-card,
.service-card,
.category-card,
.testimonial-card,
.product-card,
.workshop-card,
.article-card,
.contact-card,
.usp-card,
.value-card,
.stat-card,
.type-card {
  background: var(--white);
  border: 3px solid var(--dark);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card::before,
.service-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--mustard);
  border: 2px solid var(--dark);
  transform: rotate(45deg);
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.product-card:hover,
.workshop-card:hover,
.article-card:hover,
.contact-card:hover,
.usp-card:hover,
.type-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(44, 24, 16, 0.4);
}

.benefit-card h3,
.service-card h3,
.category-card h3,
.product-card h3,
.workshop-card h3,
.type-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
}

.price {
  font-size: var(--text-lg);
  font-weight: bold;
  color: var(--primary);
  margin: var(--space-md) 0;
  font-family: 'Georgia', serif;
}

/* ============================================
   GRIDS - FLEXBOX LAYOUTS
   ============================================ */

.benefits-grid,
.services-grid,
.categories-grid,
.process-steps,
.testimonials-grid,
.types-grid,
.workshop-grid,
.usp-grid,
.values-grid,
.stats-grid,
.mission-grid,
.contact-grid,
.departments-list,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ============================================
   SECTIONS - VINTAGE BACKGROUNDS
   ============================================ */

.benefits,
.services,
.categories,
.process,
.workshop-types,
.featured-workshops,
.blog-categories,
.mission-vision,
.stats,
.contact-methods {
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: 60px;
}

.benefits {
  background: var(--cream);
  border-top: 4px solid var(--mustard);
  border-bottom: 4px solid var(--mustard);
}

.services {
  background: var(--light);
  position: relative;
}

.categories {
  background: var(--white);
}

.process {
  background: var(--cream);
  border-top: 4px dashed var(--rust);
  border-bottom: 4px dashed var(--rust);
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  padding: var(--space-xxl) var(--space-md);
  background: var(--mustard);
  border: 4px solid var(--dark);
  margin-bottom: 60px;
}

.testimonials h2 {
  color: var(--dark);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: var(--space-lg);
  background: var(--white);
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  text-align: center;
}

.testimonial-card p {
  color: var(--dark);
  font-size: var(--text-md);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.testimonial-card .author {
  font-weight: bold;
  color: var(--primary);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   PROCESS STEPS - VINTAGE NUMBERING
   ============================================ */

.step {
  flex: 1 1 220px;
  text-align: center;
  padding: var(--space-lg);
  background: var(--white);
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border: 3px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: bold;
  margin: 0 auto var(--space-md);
  font-family: 'Georgia', serif;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   CTA BANNER - VINTAGE STYLE
   ============================================ */

.cta-banner {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  border: 4px solid var(--dark);
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed var(--mustard);
}

.cta-banner h2 {
  color: var(--white);
  border: none;
  display: block;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.cta-banner p {
  color: var(--cream);
  font-size: var(--text-md);
  margin-bottom: var(--space-lg);
}

/* ============================================
   PRODUCTS PAGE - VINTAGE FILTERS
   ============================================ */

.products-layout {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.filters {
  flex: 0 0 250px;
  background: var(--cream);
  border: 3px solid var(--dark);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filters h2 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.filter-group {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px dashed var(--mustard);
}

.filter-group h3 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
  cursor: pointer;
  color: var(--medium);
}

.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--dark);
  cursor: pointer;
}

.products-main {
  flex: 1 1 600px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--white);
  border: 2px solid var(--dark);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.products-header select {
  padding: var(--space-xs) var(--space-md);
  border: 2px solid var(--dark);
  background: var(--cream);
  font-weight: bold;
  color: var(--dark);
  cursor: pointer;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

/* ============================================
   WORKSHOPS - VINTAGE CALENDAR STYLE
   ============================================ */

.workshop-date {
  background: var(--mustard);
  color: var(--dark);
  padding: var(--space-xs) var(--space-sm);
  font-weight: bold;
  border: 2px solid var(--dark);
  display: inline-block;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  font-family: 'Courier New', monospace;
}

.workshop-meta {
  display: flex;
  gap: var(--space-sm);
  margin: var(--space-sm) 0;
  flex-wrap: wrap;
}

.workshop-meta span {
  background: var(--cream);
  padding: var(--space-xs) var(--space-sm);
  border: 2px solid var(--dark);
  font-size: var(--text-xs);
  font-weight: bold;
  color: var(--medium);
}

/* ============================================
   BLOG / INSPIRACJE - VINTAGE MAGAZINE
   ============================================ */

.featured-article,
.article-featured {
  background: var(--white);
  border: 4px solid var(--dark);
  padding: var(--space-xl);
  margin-bottom: var(--space-xxl);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.article-featured::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: var(--rust);
  opacity: 0.2;
  transform: rotate(-5deg);
}

.category {
  background: var(--rust);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--text-xs);
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--space-md);
  border: 2px solid var(--dark);
  box-shadow: var(--shadow-sm);
}

.article-meta {
  display: flex;
  gap: var(--space-md);
  color: var(--medium);
  font-size: var(--text-xs);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.article-meta span {
  padding: var(--space-xs);
  background: var(--light);
  border: 1px solid var(--medium);
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.article-card {
  flex: 1 1 280px;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.popular-item {
  padding: var(--space-md);
  background: var(--white);
  border-left: 4px solid var(--primary);
  border: 2px solid var(--dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.popular-item:hover {
  transform: translateX(5px);
  border-left-width: 8px;
}

/* ============================================
   NEWSLETTER - VINTAGE FORM
   ============================================ */

.newsletter {
  background: var(--teal);
  color: var(--white);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  border: 4px solid var(--dark);
  margin-bottom: 60px;
}

.newsletter h2 {
  color: var(--white);
  border: none;
  display: block;
}

.newsletter p {
  color: var(--cream);
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 600px;
  margin: var(--space-lg) auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1 1 300px;
  padding: var(--space-md);
  border: 3px solid var(--dark);
  background: var(--white);
  font-size: var(--text-sm);
  color: var(--dark);
}

.newsletter-form input[type="email"]:focus {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
}

.privacy-note {
  font-size: var(--text-xs);
  color: var(--cream);
  margin-top: var(--space-md);
}

/* ============================================
   O NAS - VINTAGE STORYTELLING
   ============================================ */

.story,
.mission-vision,
.value-proposition {
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: 60px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  padding: var(--space-xl);
  background: var(--white);
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-md);
}

.text-section p {
  font-size: var(--text-md);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.milestone {
  flex: 1 1 220px;
  padding: var(--space-md);
  background: var(--mustard);
  border: 3px solid var(--dark);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.milestone strong {
  display: block;
  font-size: var(--text-xl);
  color: var(--primary);
  margin-bottom: var(--space-xs);
  font-family: 'Georgia', serif;
}

.stat-number {
  font-size: var(--text-xxl);
  font-weight: bold;
  color: var(--primary);
  font-family: 'Georgia', serif;
  display: block;
  margin-bottom: var(--space-sm);
}

/* ============================================
   CONTACT - VINTAGE FORMS
   ============================================ */

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-xl);
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-lg);
}

.form-field {
  margin-bottom: var(--space-lg);
}

.form-field label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: bold;
  color: var(--dark);
  font-size: var(--text-sm);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--dark);
  background: var(--cream);
  font-size: var(--text-sm);
  color: var(--dark);
  transition: var(--transition-normal);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Courier New', monospace;
}

.form-field input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: var(--space-xs);
  vertical-align: middle;
}

.location-info,
.confirmation-steps,
.alternative-contact {
  padding: var(--space-lg);
  background: var(--light);
  border: 2px dashed var(--dark);
  margin: var(--space-lg) 0;
}

.location-info p,
.confirmation-steps p {
  margin-bottom: var(--space-sm);
}

/* ============================================
   FAQ - VINTAGE ACCORDION STYLE
   ============================================ */

.faq,
.faq-quick {
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  padding: var(--space-lg);
  background: var(--white);
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
}

.faq-item h4 {
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.faq-item p {
  color: var(--medium);
}

/* ============================================
   THANK YOU PAGE - VINTAGE SUCCESS
   ============================================ */

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--success);
  color: var(--white);
  border: 4px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xxl);
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-lg);
  animation: successPulse 1s ease;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.confirmation,
.next-steps {
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: 60px;
}

/* ============================================
   LEGAL PAGES - VINTAGE DOCUMENT STYLE
   ============================================ */

.legal-content {
  padding: var(--space-xxl) var(--space-md);
  margin-bottom: 60px;
}

.legal-content .text-section {
  font-size: var(--text-sm);
  line-height: 1.8;
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--primary);
  font-size: var(--text-lg);
}

.legal-content ul {
  list-style: square;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
  color: var(--medium);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--rust);
}

/* ============================================
   FOOTER - VINTAGE STYLE
   ============================================ */

footer {
  background: var(--dark);
  color: var(--cream);
  padding: var(--space-xxl) var(--space-md) var(--space-lg);
  border-top: 4px solid var(--mustard);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 2px dashed var(--secondary);
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h3 {
  color: var(--mustard);
  margin-bottom: var(--space-md);
  font-size: var(--text-md);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-section p {
  color: var(--cream);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a {
  color: var(--cream);
  font-size: var(--text-xs);
  transition: var(--transition-normal);
  padding-left: var(--space-sm);
  border-left: 2px solid transparent;
}

.footer-nav a:hover {
  color: var(--mustard);
  border-left-color: var(--mustard);
  padding-left: var(--space-md);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
}

.footer-bottom p {
  color: var(--secondary);
  font-size: var(--text-xs);
}

/* ============================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--cream);
  padding: var(--space-lg);
  border-top: 4px solid var(--mustard);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  animation: slideUp 0.5s ease;
}

.cookie-consent.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text h3 {
  color: var(--mustard);
  margin-bottom: var(--space-sm);
  font-size: var(--text-md);
}

.cookie-text p {
  color: var(--cream);
  font-size: var(--text-xs);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-xs);
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid var(--cream);
  cursor: pointer;
  transition: var(--transition-normal);
  background: transparent;
  color: var(--cream);
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: var(--cream);
  color: var(--dark);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.9);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-modal-content {
  background: var(--cream);
  border: 4px solid var(--dark);
  padding: var(--space-xl);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--dark);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--text-lg);
  font-weight: bold;
}

.cookie-modal-close:hover {
  background: var(--rust);
  transform: rotate(90deg);
}

.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.cookie-category {
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  background: var(--white);
  border: 2px solid var(--dark);
}

.cookie-category h4 {
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.cookie-category p {
  color: var(--medium);
  font-size: var(--text-xs);
  margin-bottom: var(--space-sm);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-modal-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  :root {
    --text-xxl: 36px;
    --text-xl: 28px;
    --text-lg: 20px;
    --text-md: 16px;
    --text-sm: 14px;
    --text-xs: 12px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    padding: var(--space-xl) var(--space-md);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .benefits-grid,
  .services-grid,
  .categories-grid,
  .process-steps,
  .testimonials-grid,
  .types-grid,
  .workshop-grid,
  .usp-grid,
  .values-grid,
  .stats-grid,
  .mission-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .products-layout {
    flex-direction: column;
  }
  
  .filters {
    position: static;
    width: 100%;
  }
  
  .products-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid,
  .services-grid,
  .categories-grid,
  .workshop-grid {
    justify-content: center;
  }
  
  .benefit-card,
  .service-card,
  .category-card,
  .workshop-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero,
  .cta-banner {
    background: white;
    border: 2px solid black;
  }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

*:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}

.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

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

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

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

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

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

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ============================================
   END OF HOBBYZONE VINTAGE RETRO CSS
   ============================================ */