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

:root {
  --primary-purple: #6b3fa0;
  --secondary-purple: #8b5cf6;
  --accent-purple: #a78bfa;
  --dark-bg: #0f0f0f;
  --light-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --border-light: #e5e5e5;
  --border-dark: #333333;
  --success: #22c55e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

header {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: var(--text-light);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

nav a:hover {
  color: var(--accent-purple);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-purple);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    display: none;
    margin-top: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  min-height: calc(100vh - 200px);
}

.hero {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  padding: 4rem 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  text-align: center;
  border: 2px solid var(--secondary-purple);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

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

.product-card {
  background: var(--light-bg);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  border-color: var(--secondary-purple);
  box-shadow: 0 8px 20px rgba(107, 63, 160, 0.15);
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.3rem;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(107, 63, 160, 0.3);
}

.btn-secondary {
  background: var(--accent-purple);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: var(--secondary-purple);
  color: var(--text-light);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-purple);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--primary-purple);
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  flex: 1;
}

.checkbox-group a {
  color: var(--secondary-purple);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

footer {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: var(--text-light);
  padding: 3rem 1.5rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--accent-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--text-light);
}

.contact-info {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--text-light);
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-height: 150px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  flex: 1;
  font-size: 0.95rem;
}

.cookie-content a {
  color: var(--accent-purple);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--primary-purple);
  color: var(--text-light);
}

.cookie-accept:hover {
  background: var(--secondary-purple);
}

.cookie-reject {
  background: transparent;
  color: var(--accent-purple);
  border: 2px solid var(--accent-purple);
}

.cookie-reject:hover {
  background: rgba(107, 63, 160, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

.success-message {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
  border: 2px solid var(--success);
  color: #166534;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
}

.success-message h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.success-message p {
  font-size: 1rem;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-purple);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.content-section {
  background: rgba(107, 63, 160, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-purple);
  margin-bottom: 2rem;
}

.content-section h2 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content-section p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(107, 63, 160, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--border-light);
}

.about-hero {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: var(--text-light);
  padding: 3rem 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.about-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.about-card:hover {
  border-color: var(--secondary-purple);
  box-shadow: 0 8px 20px rgba(107, 63, 160, 0.15);
}

.about-card h3 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.about-card p {
  color: #666;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--secondary-purple);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #999;
}

.category-intro {
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-purple);
  margin-bottom: 2rem;
}

.category-intro h2 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.category-intro p {
  color: #333;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .about-hero h1 {
    font-size: 1.5rem;
  }

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