:root {
      --primary: #FF5E7D;
      --secondary: #00C4CC;
      --dark: #1A1A2E;
      --light: #F5F5F5;
      --accent: #FFD166;
      --retro-bg: #2D3047;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }
    body {
      background-color: var(--retro-bg);
      color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(26, 26, 46, 0.9);
      padding: 1rem 2rem;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid var(--primary);
    }
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--primary);
      text-decoration: none;
    }
    nav ul {
      display: flex;
      list-style: none;
    }
    nav ul li {
      margin-left: 1.5rem;
    }
    nav ul li a {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: var(--primary);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background: var(--light);
      margin: 5px;
      transition: all 0.3s;
    }
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 2rem;
    }
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: var(--primary);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin-bottom: 2rem;
    }
    .btn {
      display: inline-block;
      padding: 0.8rem 2rem;
      background: var(--primary);
      color: var(--light);
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }
    .btn:hover {
      background: var(--secondary);
      transform: translateY(-3px);
    }
    section {
      padding: 5rem 2rem;
    }
    .about {
      background: var(--dark);
      text-align: center;
    }
    .about h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--accent);
    }
    .about p {
      max-width: 800px;
      margin: 0 auto 2rem;
    }
    .products, .prices, .gallery, .feedback, .faq {
      background: var(--retro-bg);
      text-align: center;
    }
    .products h2, .prices h2, .gallery h2, .feedback h2, .faq h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--accent);
    }
    .gallery img {
      width: 300px;
      height: 200px;
      object-fit: cover;
      margin: 0.5rem;
      border: 3px solid var(--primary);
      transition: transform 0.3s;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }
    .feedback-slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding: 1rem 0;
    }
    .feedback-item {
      min-width: 300px;
      background: var(--dark);
      padding: 1.5rem;
      border-radius: 10px;
      scroll-snap-align: start;
    }
    .feedback-item h3 {
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    .faq-item {
      margin-bottom: 1rem;
      text-align: left;
      max-width: 800px;
      margin: 0 auto 1rem;
      background: var(--dark);
      padding: 1rem;
      border-radius: 5px;
    }
    .faq-item h3 {
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    footer {
      background: var(--dark);
      padding: 2rem;
      text-align: center;
    }
    footer a {
      color: var(--light);
      margin: 0 0.5rem;
      text-decoration: none;
    }
    footer a:hover {
      color: var(--primary);
    }
    .disclaimer {
      font-size: 0.8rem;
      margin-top: 2rem;
      color: #aaa;
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--dark);
      padding: 1rem;
      text-align: center;
      border-top: 2px solid var(--primary);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .cookie-banner button {
      background: var(--primary);
      color: var(--light);
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
    }
    @media (max-width: 768px) {
      nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s;
      }
      nav ul.active {
        left: 0;
      }
      nav ul li {
        margin: 1.5rem 0;
      }
      .burger {
        display: block;
      }
      .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      .burger.active div:nth-child(2) {
        opacity: 0;
      }
      .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
    }

