/* ===================================
   GLEEVO CLEAN - LUXURY PREMIUM DESIGN
   Sustainable Fashion Marketplace
   =================================== */

/* === CSS RESET & NORMALIZE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

/* === LUXURY PREMIUM COLOR PALETTE === */
:root {
  --gold-primary: #C9A55B;
  --gold-dark: #A68842;
  --gold-light: #E8D4A0;
  --charcoal: #2C2C2C;
  --charcoal-light: #3D3D3D;
  --cream: #F8F6F0;
  --cream-dark: #EAE6DC;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --accent-burgundy: #8B3A3A;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --border-luxury: rgba(201, 165, 91, 0.3);
  --shadow-luxury: 0 8px 32px rgba(201, 165, 91, 0.15);
  --shadow-elegant: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* === TYPOGRAPHY - LUXURY FONTS === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: var(--charcoal);
}

/* === CONTAINER & LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-luxury);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.nav-menu a {
  font-family: 'Montserrat', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: var(--gold-primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  color: var(--gold-primary);
  font-size: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--gold-primary);
  font-size: 28px;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--gold-primary);
  color: var(--charcoal);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  padding: 16px;
  border-bottom: 1px solid rgba(201, 165, 91, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  color: var(--gold-primary);
  background: rgba(201, 165, 91, 0.1);
  padding-left: 24px;
  border-left: 3px solid var(--gold-primary);
}

/* === BUTTONS - LUXURY STYLE === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: 'Montserrat', serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(201, 165, 91, 0.3);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 165, 91, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--gold-primary);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 165, 91, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 44, 44, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--charcoal);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-simple {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--cream);
}

.hero-simple h1 {
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: var(--cream-dark);
  margin-bottom: 32px;
}

/* === BENEFIT TAGS === */
.benefit-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tag {
  padding: 10px 24px;
  background: var(--white);
  border: 1px solid var(--gold-primary);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--gold-primary);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* === SECTIONS === */
section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.value-proposition,
.how-it-works,
.benefits,
.sustainability,
.pricing-hero,
.workshop-categories {
  background: var(--white);
}

.testimonials,
.trust-signals,
.upgrade-incentive,
.flexibility {
  background: var(--cream);
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.supporting-text {
  text-align: center;
  max-width: 700px;
  margin: 32px auto 0;
  font-size: 18px;
  color: var(--text-secondary);
  font-style: italic;
}

/* === CARDS & GRIDS - FLEXBOX ONLY === */
.value-grid,
.benefits-grid,
.trust-grid,
.services-grid,
.category-grid,
.assurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card,
.benefit-card,
.trust-item,
.service-card,
.category-card,
.assurance-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border-luxury);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 24px;
}

.value-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold-primary);
  transition: height 0.4s ease;
}

.value-card:hover,
.benefit-card:hover,
.service-card:hover,
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold-primary);
}

.value-card:hover::before,
.benefit-card:hover::before {
  height: 100%;
}

.value-card h3,
.benefit-card h3,
.trust-item h3,
.category-card h3 {
  color: var(--charcoal);
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p,
.benefit-card p,
.trust-item p,
.category-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.workshop-count {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* === STEPS GRID === */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.step:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gold-primary);
  color: var(--charcoal);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  font-family: 'Montserrat', serif;
}

.step h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
}

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

/* === TESTIMONIALS === */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: var(--white);
  padding: 40px;
  border-left: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-elegant);
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(201, 165, 91, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border-luxury);
}

.testimonial-author strong {
  font-size: 16px;
  color: var(--charcoal);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* === IMPACT METRICS === */
.impact-grid,
.stats-grid,
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}

.impact-item,
.stat-card,
.metric-card {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 2px solid var(--gold-primary);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.impact-item:hover,
.stat-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-luxury);
}

.impact-item h3,
.stat-card h3 {
  font-size: 42px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.impact-item p,
.stat-card p {
  font-size: 16px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* === PRICING CARDS === */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 450px;
  background: var(--white);
  padding: 48px 40px;
  border: 2px solid var(--border-luxury);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 24px;
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: var(--shadow-luxury);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(201, 165, 91, 0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.08);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--charcoal);
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 8px;
  font-family: 'Montserrat', serif;
}

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

.commission {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.features-list {
  text-align: left;
  margin-bottom: 32px;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-secondary);
  position: relative;
  padding-left: 28px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 18px;
}

/* === SERVICE CARDS === */
.service-card {
  background: var(--cream);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border-luxury);
  transition: all 0.3s ease;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 16px 0;
  font-family: 'Montserrat', serif;
}

.discount-note {
  text-align: center;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 32px;
  font-style: italic;
}

/* === NEWSLETTER === */
.newsletter {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  text-align: center;
  color: var(--cream);
}

.newsletter h2 {
  color: var(--gold-primary);
}

.newsletter p {
  color: var(--cream-dark);
  max-width: 600px;
  margin: 0 auto 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 16px 24px;
  border: 2px solid var(--gold-primary);
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  font-size: 16px;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-light);
}

.email-input::placeholder {
  color: var(--cream-dark);
}

.privacy-note {
  font-size: 13px;
  color: var(--cream-dark);
}

.privacy-note a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* === SEARCH BAR === */
.search-bar {
  display: flex;
  gap: 16px;
  max-width: 700px;
  margin: 32px auto;
  flex-wrap: wrap;
}

.search-bar input {
  flex: 1 1 400px;
  padding: 16px 24px;
  border: 2px solid var(--border-luxury);
  background: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 165, 91, 0.1);
}

.quick-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.filter-tag {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gold-primary);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tag:hover {
  background: var(--gold-primary);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* === MARKETPLACE LAYOUT === */
.marketplace-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.filter-sidebar {
  flex: 0 0 260px;
  background: var(--cream);
  padding: 32px;
  border: 1px solid var(--border-luxury);
  position: sticky;
  top: 100px;
}

.filter-sidebar h3 {
  font-size: 20px;
  margin-bottom: 24px;
  color: var(--charcoal);
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 12px;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.filter-group label:hover {
  color: var(--gold-dark);
}

.filter-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold-primary);
}

.filter-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-luxury);
  background: var(--white);
  color: var(--charcoal);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.product-area {
  flex: 1;
}

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

.results-count {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.sort-select {
  padding: 12px 40px 12px 16px;
  border: 1px solid var(--border-luxury);
  background: var(--white);
  color: var(--charcoal);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* === PRODUCT GRID === */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.product-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--border-luxury);
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 24px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold-primary);
}

.product-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: 'Bild kommt';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-secondary);
  font-size: 14px;
  font-style: italic;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.product-card .price {
  font-size: 24px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.product-card .seller {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
}

/* === WORKSHOP GRID === */
.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.workshop-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
  max-width: 550px;
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border-luxury);
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold-primary);
}

.format-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-primary);
  color: var(--charcoal);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workshop-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--charcoal);
  padding-right: 80px;
}

.workshop-info {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.instructor {
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.availability {
  font-size: 13px;
  color: var(--accent-burgundy);
  font-weight: 600;
  margin-bottom: 16px;
}

/* === COMPARISON TABLE === */
.comparison-table {
  overflow-x: auto;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border-luxury);
}

thead {
  background: var(--charcoal);
}

thead th {
  padding: 20px;
  text-align: left;
  color: var(--gold-primary);
  font-family: 'Montserrat', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

tbody tr {
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.3s ease;
}

tbody tr:hover {
  background: var(--cream);
}

tbody td {
  padding: 16px 20px;
  color: var(--text-secondary);
  font-size: 15px;
}

tbody td:first-child {
  font-weight: 600;
  color: var(--charcoal);
}

/* === CONTACT FORMS === */
.form-wrapper,
.contact-form-section .container > div {
  max-width: 700px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-luxury);
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 165, 91, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  accent-color: var(--gold-primary);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
  font-style: italic;
}

/* === CONTACT SECTIONS === */
.contact-grid,
.contact-methods .container > .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: var(--cream);
  padding: 40px;
  border: 1px solid var(--border-luxury);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
  border-color: var(--gold-primary);
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.contact-card strong {
  color: var(--gold-dark);
}

/* === FAQ === */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.faq-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--white);
  padding: 32px;
  border-left: 4px solid var(--gold-primary);
  box-shadow: var(--shadow-elegant);
  margin-bottom: 24px;
}

.faq-item h3 {
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* === LOCATION === */
.location-content,
.location-visit .container > div {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--cream);
  padding: 40px;
  border: 1px solid var(--border-luxury);
}

.location-details p {
  line-height: 1.8;
}

/* === LEGAL CONTENT === */
.legal-header {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 60px 20px;
}

.legal-header h1 {
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.legal-header p {
  color: var(--cream-dark);
  font-size: 14px;
}

.legal-content {
  background: var(--white);
  padding: 60px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 48px;
}

.text-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--charcoal);
  text-align: left;
}

.text-section h2::after {
  display: none;
}

.text-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.text-section ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-section ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--gold-primary);
  font-size: 20px;
  font-weight: 700;
}

/* === CONFIRMATION PAGE === */
.hero-confirmation {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: 100px 20px;
  text-align: center;
}

.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-primary);
  color: var(--charcoal);
  font-size: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-weight: 700;
}

.explore-more,
.next-steps {
  background: var(--white);
}

.quick-links-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card,
.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background: var(--cream);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border-luxury);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.link-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
  border-color: var(--gold-primary);
}

.link-card h3,
.resource-card h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
}

.email-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 16px;
}

/* === FINAL CTA === */
.final-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  text-align: center;
  color: var(--cream);
}

.final-cta h2 {
  color: var(--gold-primary);
}

.final-cta p {
  color: var(--cream-dark);
  max-width: 700px;
  margin: 0 auto 32px;
}

.trial-offer,
.guarantee,
.trust-signal {
  font-size: 14px;
  color: var(--cream-dark);
  margin-top: 24px;
  font-style: italic;
}

.urgency {
  color: var(--accent-burgundy);
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === FOOTER === */
footer {
  background: var(--charcoal);
  color: var(--cream-dark);
  padding: 60px 20px 32px;
  border-top: 4px solid var(--gold-primary);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

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

.footer-section h4 {
  color: var(--gold-primary);
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-section p {
  color: var(--cream-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section a {
  color: var(--cream-dark);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--gold-primary);
  padding-left: 8px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 165, 91, 0.2);
  color: var(--cream-dark);
  font-size: 14px;
}

/* === SOCIAL LINKS === */
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.social-link {
  padding: 12px 32px;
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold-primary);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--cream-dark);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--gold-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: var(--gold-primary);
  color: var(--charcoal);
}

.cookie-btn-accept:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.cookie-btn-settings:hover {
  background: var(--gold-primary);
  color: var(--charcoal);
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: transparent;
  color: var(--charcoal);
  font-size: 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--gold-primary);
  transform: rotate(90deg);
}

.cookie-modal h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h4 {
  font-size: 18px;
  color: var(--charcoal);
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--cream-dark);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--gold-primary);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .marketplace-layout {
    flex-direction: column;
  }
  
  .filter-sidebar {
    position: static;
    flex: 1;
    width: 100%;
  }
  
  .product-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .value-card,
  .benefit-card,
  .trust-item,
  .service-card,
  .category-card,
  .testimonial-card,
  .pricing-card,
  .workshop-card,
  .product-card,
  .step,
  .impact-item,
  .stat-card,
  .link-card,
  .resource-card,
  .contact-card,
  .faq-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Forms */
  .search-bar,
  .newsletter-form {
    flex-direction: column;
  }
  
  .search-bar input,
  .email-input {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Tables */
  table {
    font-size: 14px;
  }
  
  thead th,
  tbody td {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero {
    padding: 60px 20px 50px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .price {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* === ACCESSIBILITY === */
.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;
}

:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 2px;
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* === END OF STYLESHEET === */