    /* --- VARIABLES --- */
    :root {
      --bg-color: #F8F7F3;
      --text-color: #3A3A38;
      --accent-color: #E0DDD5;
      --border-radius: 100px;
      --container-width: 1200px;
      --font-heading: 'Montserrat', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-color);
      font-family: var(--font-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

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

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

    .container {
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* --- BUTTONS --- */
    .btn {
      display: inline-block;
      padding: 1rem 2.5rem;
      border-radius: var(--border-radius);
      /* Капсула */
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .btn-primary {
      background-color: var(--text-color);
      color: #fff;
      border: 2px solid var(--text-color);
    }

    .btn-primary:hover {
      background-color: #fff;
      color: var(--text-color);
      border-color: #fff;
    }

    .btn-outline {
      background-color: transparent;
      border: 1px solid var(--text-color);
      color: var(--text-color);
      padding: 0.8rem 2rem;
    }

    .btn-outline:hover {
      background-color: var(--text-color);
      color: #fff;
    }

    /* --- HEADER --- */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 1.5rem 0;
      background-color: rgba(248, 247, 243, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .logo {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.8rem;
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
    }

    /* Опит за стилизация на H с CSS (символично) */
    .stylized-h {
      display: inline-block;
      position: relative;
      margin-right: 2px;
    }

    /* Може да се добави псевдо-елемент за капсулата тук */

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      text-transform: uppercase;
    }

    .nav-links a:hover {
      opacity: 0.6;
    }

    .cart-icon {
      position: relative;
      display: flex;
      align-items: center;
      cursor: pointer;
      font-size: 1.2rem;
    }

    .cart-icon i {
      transition: opacity 0.3s;
    }

    .cart-icon:hover i {
      opacity: 0.6;
    }

    .cart-count {
      position: absolute;
      bottom: -8px;
      right: -14px;
      background-color: var(--text-color);
      color: #fff;
      font-size: 0.55rem;
      font-weight: 700;
      padding: 4px 6px;
      border-radius: 12px;
      text-align: center;
      line-height: 1;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .lang-toggle {
      background: transparent;
      border: 1px solid var(--text-color);
      color: var(--text-color);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      cursor: pointer;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      margin-right: 1rem;
    }

    .lang-toggle:hover {
      background-color: var(--text-color);
      color: #fff;
    }

    .lang-toggle #lang-icon {
      pointer-events: none;
    }

    .mobile-menu {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* --- HERO SECTION --- */
    .hero {
      position: relative;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 80px;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 2rem;
    }

    .hero-title {
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      letter-spacing: -0.01em;
      color: #fff;
      font-weight: 600;
    }

    .hero-subtitle {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 2rem auto;
      font-weight: 400;
      color: #fff;
      line-height: 1.6;
    }

    /* --- SECTIONS GENERAL --- */
    .section {
      padding: 6rem 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    /* --- GRID LAYOUTS --- */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

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

    .concept-image-wrapper {
      background-color: var(--accent-color);
      aspect-ratio: 4/3;
      margin-bottom: 1.5rem;
      overflow: hidden;
      border-radius: 8px;
      /* Лек радиус */
    }

    .concept-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .concept-card:hover img {
      transform: scale(1.05);
    }

    .concept-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .concept-card p {
      font-size: 0.95rem;
      color: #555;
    }

    /* --- SPLIT SECTION --- */
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }

    .split-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 600px;
    }

    .split-content {
      padding: 4rem 6rem;
    }

    .split-content h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }

    .split-content p {
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .feature-list {
      list-style: none;
    }

    .feature-list li {
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    /* --- SHOP SECTION --- */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
    }

    .product-card {
      group: relative;
    }

    .product-img {
      position: relative;
      background-color: #fff;
      margin-bottom: 1.5rem;
      aspect-ratio: 1/1;
      overflow: hidden;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover img {
      transform: scale(1.05);
    }

    .badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background-color: var(--text-color);
      color: #fff;
      padding: 0.2rem 0.8rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: 700;
      border-radius: 20px;
    }

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

    .product-info h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .product-info .price {
      font-family: var(--font-body);
      margin-bottom: 1rem;
      font-weight: 500;
    }

    /* --- FOOTER --- */
    .footer {
      background-color: #EAE8E4;
      padding: 5rem 0 2rem 0;
      margin-top: 4rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .footer-brand h3 {
      margin-bottom: 1rem;
    }

    .footer-links h4,
    .footer-newsletter h4 {
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      opacity: 0.6;
    }

    .footer-links a {
      display: block;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }

    .newsletter-form {
      position: relative;
      display: flex;
    }

    .newsletter-form input {
      padding: 0.8rem 4rem 0.8rem 1rem;
      border: 1px solid transparent;
      border-radius: var(--border-radius);
      background-color: #fff;
      width: 100%;
      font-family: var(--font-body);
    }

    .newsletter-form button {
      position: absolute;
      right: 0.3rem;
      top: 50%;
      transform: translateY(-50%);
      padding: 0.6rem 1rem;
      background-color: var(--text-color);
      color: #fff;
      border: none;
      border-radius: var(--border-radius);
      cursor: pointer;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      background-color: #555;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
      font-size: 0.8rem;
      opacity: 0.5;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {

      .nav-links,
      .nav-icons {
        display: none;
      }

      .lang-toggle {
        margin-right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
      }

      .mobile-menu {
        display: block;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .grid-3,
      .split-section,
      .footer-content {
        grid-template-columns: 1fr;
      }

      .split-image {
        order: -1;
        /* Image first on mobile */
      }

      .split-content {
        padding: 3rem 1.5rem;
      }
    }

    .mark {
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
    }

    .mark svg {
      display: block
    }

    .brand {
      display: flex;
      align-items: center;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 26px;
    }

    /* --- CONTACT FORM --- */
    .contact-form {
      background-color: #fff;
      padding: 3rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

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

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-color);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1px solid var(--accent-color);
      border-radius: var(--border-radius);
      font-family: var(--font-body);
      font-size: 1rem;
      background-color: var(--bg-color);
      transition: border-color 0.3s ease;
    }

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

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
      border-radius: 20px;
    }

    .form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233A3A38' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }

    .form-message {
      padding: 1rem 1.5rem;
      border-radius: var(--border-radius);
      margin-bottom: 2rem;
      font-weight: 500;
      text-align: center;
      transition: opacity 0.3s ease;
    }

    .form-message-success {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }

    .form-message-error {
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }

    .newsletter-message {
      margin-top: 1rem;
      padding: 0.8rem 1rem;
      border-radius: var(--border-radius);
      font-size: 0.85rem;
      font-weight: 500;
      text-align: center;
      transition: opacity 0.3s ease;
    }

    .newsletter-message-success {
      background-color: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }

    .newsletter-message-error {
      background-color: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }