    :root {
      --bg: #fdfaf8;
      --surface: #ffffff;
      --text: #161616;
      --muted: #6f6f6f;
      --accent: #ec6b88;
      --accent-dark: #d53b61;
      --shadow: 0 18px 45px rgba(235, 134, 150, 0.14);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: radial-gradient(circle at top, rgba(236, 107, 136, 0.14), transparent 40%), #fdfaf8;
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.88);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 0;
    }

    .brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      letter-spacing: 0.04em;
    }

    .nav-links {
      display: flex;
      gap: 28px;
    }

    .nav-links a {
      color: var(--muted);
      font-weight: 500;
      transition: color 0.25s ease;
    }

    .nav-links a:hover {
      color: var(--accent-dark);
    }

    .btn-primary,
    .btn-secondary {
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #ec6b88 0%, #d53b61 100%);
      color: #fff;
      padding: 14px 26px;
      box-shadow: 0 18px 40px rgba(229, 77, 108, 0.25);
    }

    .btn-secondary {
      background: rgba(220, 43, 92, 0.08);
      color: var(--accent-dark);
      padding: 14px 24px;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
      transform: translateY(-2px);
    }

    .hero {
      min-height: calc(100vh - 90px);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 48px;
      align-items: center;
      padding: 100px 0 80px;
    }

    .hero-text {
      max-width: 560px;
      animation: fadeUp 0.85s ease both;
    }

    .eyebrow {
      text-transform: uppercase;
      font-size: 0.85rem;
      color: var(--accent-dark);
      letter-spacing: 0.16em;
      margin-bottom: 18px;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 4.8rem);
      line-height: 0.95;
      margin-bottom: 24px;
    }

    .hero-text p {
      max-width: 520px;
      color: var(--muted);
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
      display: grid;
      gap: 20px;
      animation: fadeUp 0.9s ease 0.15s both;
    }

    .hero-card {
      border-radius: 32px;
      overflow: hidden;
      background: white;
      box-shadow: var(--shadow);
    }

    .hero-card.small {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 14px;
      align-items: center;
    }

    .hero-card.small div {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .hero-card.small .stat {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .hero-card.large {
      height: 100%;
      min-height: 420px;
      background: linear-gradient(180deg, rgba(236, 107, 136, 0.1), transparent 70%), url('https://balthazar.club/uploads/posts/2023-02/1675776256_balthazar-club-p-krasivie-bolshie-buketi-tsvetov-vkontakte-1.jpg') center/cover no-repeat;
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
      gap: 20px;
    }

    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 3vw, 3rem);
    }

    .section-title p {
      color: var(--muted);
      max-width: 56ch;
    }

    .features,
    .catalog-grid,
    .reviews-grid,
    .contacts-grid {
      display: grid;
      gap: 24px;
    }

    .features {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 32px;
    }

    .feature-card {
      background: var(--surface);
      border-radius: 24px;
      padding: 28px;
      box-shadow: var(--shadow);
      transition: transform 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
    }

    .feature-card h3 {
      margin-bottom: 14px;
      font-size: 1.1rem;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .catalog-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 28px;
    }

    .filter-chip {
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(237, 99, 123, 0.2);
      color: var(--accent-dark);
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .filter-chip:hover,
    .filter-chip.active {
      background: rgba(236, 107, 136, 0.12);
      transform: translateY(-2px);
    }

    .catalog-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-card {
      background: var(--surface);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(238, 100, 134, 0.16);
    }

    .product-card img {
      height: 260px;
      object-fit: cover;
      width: 100%;
    }

    .product-content {
      padding: 22px 20px 26px;
    }

    .product-content h3 {
      margin-bottom: 12px;
      font-size: 1.25rem;
    }

    .product-content .price {
      color: var(--accent-dark);
      font-weight: 700;
      margin-bottom: 18px;
    }

    .product-content .product-actions {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
    }

    .product-content .btn-order {
      flex: 1;
      background: var(--accent);
      color: #fff;
      padding: 12px 16px;
      border-radius: 999px;
    }

    .delivery {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 32px;
      align-items: center;
      margin-top: 32px;
    }

    .delivery-card {
      background: var(--surface);
      border-radius: 32px;
      padding: 36px;
      box-shadow: var(--shadow);
    }

    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 22px;
    }

    .delivery-item {
      background: rgba(236, 107, 136, 0.08);
      border-radius: 22px;
      padding: 22px;
      text-align: center;
    }

    .delivery-item strong {
      display: block;
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .reviews-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .review-card {
      background: var(--surface);
      border-radius: 30px;
      padding: 28px;
      box-shadow: var(--shadow);
      transition: transform 0.25s ease;
    }

    .review-card:hover {
      transform: translateY(-6px);
    }

    .review-stars {
      color: #e14b76;
      margin-bottom: 18px;
    }

    .review-card p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .review-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .review-author div span {
      display: block;
      font-weight: 600;
    }

    .contact-section {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 32px;
      align-items: start;
    }

    .contact-card {
      background: var(--surface);
      border-radius: 32px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .contact-card h3 {
      margin-bottom: 18px;
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 16px;
    }

    .contact-list li {
      display: flex;
      gap: 14px;
      align-items: center;
      color: var(--muted);
    }

    .contact-list li strong {
      color: var(--text);
    }

    .contact-form {
      display: grid;
      gap: 18px;
      margin-top: 16px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 18px;
      padding: 16px 18px;
      font-size: 0.98rem;
      outline: none;
      transition: border-color 0.2s ease;
      background: #fff;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: rgba(236, 107, 136, 0.45);
    }

    .contact-form textarea {
      min-height: 160px;
      resize: vertical;
    }

    .map-frame {
      position: relative;
      height: 430px;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .map-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    footer {
      padding: 40px 0 60px;
      color: var(--muted);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    .socials {
      display: flex;
      gap: 16px;
    }

    .socials a {
      display: inline-flex;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(236, 107, 136, 0.12);
      color: var(--accent-dark);
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      align-items: center;
      justify-content: center;
      background: rgba(236, 107, 136, 0.14);
      border: none;
      cursor: pointer;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .delivery,
      .contact-section {
        grid-template-columns: 1fr;
      }

      .catalog-grid,
      .reviews-grid,
      .features,
      .delivery-grid,
      .contacts-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .nav-bar {
        flex-wrap: wrap;
      }

      .nav-links {
        order: 3;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
      }

      .mobile-nav-toggle {
        display: inline-flex;
      }

      .filter-chip {
        font-size: 0.95rem;
      }

      .hero {
        padding-top: 70px;
      }

      .hero-card.large {
        min-height: 320px;
      }
    }

    @media (max-width: 520px) {
      .section-title {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links {
        gap: 14px;
      }

      .hero-title {
        font-size: 2.6rem;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .nav-bar {
        padding: 16px 0;
      }
    }