:root {
  --rose-pink: #e67a9e;
  --rose-light: #fce7f3;
  --rose-lighter: #fdf2f8;
  --turquoise: #7dd3fc;
  --turquoise-light: #e0f2fe;
  --turquoise-lighter: #f0f9ff;
  --text-dark: #2d3748;
  --text-gray: #64748b;
  --white: #ffffff;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: linear-gradient(135deg, var(--turquoise-lighter) 0%, var(--rose-lighter) 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(230, 122, 158, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: var(--rose-pink);
  font-size: 1.5rem;
  font-weight: 600;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--rose-pink);
}

/* Hero */
.hero {
  position: relative;
  padding: 6rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/mama-barn-kram.jpg'), url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=1600&h=900&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* ENDAST dovt ljust ljusrosa filter - inget annat */
  background: rgba(255, 240, 248, 0.6);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* ENDAST ren vit overlay - INGEN lila/färg alls */
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
  /* Säkerställ att ingen färg läcker igenom */
  mix-blend-mode: normal;
}

/* Intro Section */
.intro-section {
  padding: 4rem 0;
  background: var(--white);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.intro-header {
  text-align: center;
  margin-bottom: 3rem;
}

.intro-content h2 {
  font-size: 2.2rem;
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--rose-pink) 0%, var(--turquoise) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.intro-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--rose-pink) 0%, var(--turquoise) 100%);
  border-radius: 2px;
}

.intro-lead {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-content p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.intro-content em {
  color: var(--rose-pink);
  font-style: italic;
  font-weight: 500;
}

.highlight-box {
  background: linear-gradient(135deg, var(--rose-lighter) 0%, var(--turquoise-lighter) 100%);
  border-left: 4px solid var(--rose-pink);
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(230, 122, 158, 0.1);
}

.highlight-box h3 {
  color: var(--rose-pink);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.highlight-box p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.intro-content h3 {
  color: var(--turquoise);
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.research-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--rose-lighter) 0%, var(--turquoise-lighter) 100%);
  border-radius: 12px;
  border: 1px solid var(--rose-light);
}

.research-section h3 {
  color: var(--rose-pink);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.research-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.research-link {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--rose-light);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s;
}

.research-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 122, 158, 0.2);
  border-color: var(--rose-pink);
}

.research-link strong {
  color: var(--rose-pink);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}

.research-link span {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
}

.intro-conclusion {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--turquoise-lighter) 0%, var(--rose-lighter) 100%);
  border-radius: 12px;
  border: 1px solid var(--turquoise-light);
}

/* Hero content */
.hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

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

.hero h2 {
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(255, 255, 255, 0.95), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-text {
  font-size: 1.25rem;
  color: #1a1a1a;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95), 0 1px 2px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 0 auto;
}

/* Products */
.products {
  padding: 4rem 0;
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

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

.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(230, 122, 158, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border: 2px solid var(--rose-light);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(230, 122, 158, 0.25);
}

.product-card.featured {
  border: 2px solid var(--turquoise);
  background: linear-gradient(135deg, var(--white) 0%, var(--turquoise-lighter) 100%);
}

.badge-popular,
.badge-custom {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--rose-pink) 0%, var(--turquoise) 100%);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-custom {
  background: linear-gradient(135deg, var(--turquoise) 0%, var(--rose-pink) 100%);
}

.product-card h3 {
  color: var(--rose-pink);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 1rem;
}

.description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  padding: 0.5rem 0;
  color: var(--text-dark);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-pink) 0%, var(--turquoise) 100%);
  color: var(--white);
  width: 100%;
  text-align: center;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(230, 122, 158, 0.4);
}

/* Guides section */
.guides-section {
  padding: 4rem 0;
  background: var(--white);
  margin-top: 2rem;
}

.guides-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

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

.guide-card {
  background: linear-gradient(135deg, var(--rose-lighter) 0%, var(--turquoise-lighter) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--rose-light);
  transition: transform 0.3s;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(230, 122, 158, 0.2);
}

.guide-card h3 {
  color: var(--rose-pink);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.guide-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.guide-card .btn-download {
  background: var(--rose-pink);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
}

/* Form styles */
.form-section {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(230, 122, 158, 0.15);
  border: 2px solid var(--rose-light);
}

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

.form-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--turquoise-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

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

.checkbox-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
}

.checkbox-item label {
  font-weight: normal;
  margin: 0;
  cursor: pointer;
}

/* About page */
.about-content {
  line-height: 1.8;
}

.about-content h3 {
  color: var(--rose-pink);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

/* Support Resources */
.support-resources {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--turquoise-lighter) 0%, var(--rose-lighter) 100%);
  margin-top: 4rem;
}

.support-resources h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.support-intro {
  text-align: center;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.support-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--rose-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(230, 122, 158, 0.2);
}

.support-card h3 {
  color: var(--rose-pink);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.support-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.support-link {
  display: inline-block;
  color: var(--turquoise);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.support-link:hover {
  color: var(--rose-pink);
  text-decoration: underline;
}

.support-phone {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
  margin-top: 0;
}

/* Loading spinner */
.loading {
  text-align: center;
  padding: 2rem;
  color: var(--text-gray);
}

/* Success message */
.success-message {
  background: var(--turquoise-light);
  border: 2px solid var(--turquoise);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.success-message h3 {
  color: var(--turquoise);
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  
  nav {
    gap: 1rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 2rem;
  }
}

