    :root {
      --bg: #f3e7d9;
      --bg-soft: #ead7c2;
      --white: #ffffff;
      --cream: #f1dfca;
      --coffee: #8b5e3c;
      --coffee-dark: #3f2618;
      --coffee-soft: #c79b73;
      --latte: #ead3b8;
      --text: #2d2119;
      --muted: #8a7564;
      --line: #ead9c5;
      --danger: #b85c38;
      --success: #5f7f4f;
      --shadow: 0 20px 50px rgba(72, 44, 24, 0.12);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(199, 155, 115, 0.32), transparent 34%),
        radial-gradient(circle at top right, rgba(234, 211, 184, 0.7), transparent 28%),
        var(--bg);
      color: var(--text);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      flex: 1;
      width: 100%;
    }

    .site-footer {
      margin-top: 48px;
      padding: 26px 0;
      border-top: 1px solid rgba(234, 217, 197, 0.85);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 231, 214, 0.92)),
        var(--bg-soft);
    }

    .site-footer-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 22px;
      border: 1px solid rgba(234, 217, 197, 0.9);
      border-radius: 22px;
      background: rgba(255, 250, 244, 0.9);
      box-shadow: 0 18px 42px rgba(72, 44, 24, 0.1);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: 0;
    }

    .footer-logo {
      width: 46px;
      height: 46px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      background: linear-gradient(135deg, var(--coffee-dark), var(--coffee));
      color: var(--white);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0;
      box-shadow: 0 12px 24px rgba(63, 38, 24, 0.2);
    }

    .footer-brand strong {
      display: block;
      color: var(--coffee-dark);
      font-size: 17px;
      line-height: 1.2;
    }

    .footer-brand small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .footer-divider {
      height: 42px;
      width: 1px;
      background: var(--line);
    }

    .footer-copy {
      margin: 0;
      color: var(--coffee);
      font-size: 14px;
      font-weight: 800;
      text-align: right;
      line-height: 1.5;
    }

    .footer-copy a {
      color: var(--coffee);
      font-weight: 900;
      text-decoration: none;
      border-bottom: 1px solid rgba(139, 94, 60, 0.38);
      transition: 0.2s ease;
    }

    .footer-copy a:hover {
      color: var(--coffee-dark);
      border-bottom-color: var(--coffee-dark);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button {
      font-family: inherit;
      border: none;
      cursor: pointer;
    }

    .page {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding-bottom: 110px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 16px 0;
      backdrop-filter: blur(18px);
      background: rgba(243, 231, 217, 0.86);
      border-bottom: 1px solid rgba(234, 217, 197, 0.7);
    }

    .topbar-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      width: 48px;
      height: 48px;
      border-radius: 17px;
      background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-soft));
      color: var(--white);
      display: grid;
      place-items: center;
      box-shadow: 0 14px 30px rgba(63, 38, 24, 0.24);
      font-size: 23px;
    }

    .brand small {
      color: var(--muted);
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      font-size: 11px;
    }

    .brand h1 {
      font-size: clamp(18px, 3.4vw, 25px);
      line-height: 1.1;
      color: var(--coffee-dark);
    }

    .table-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      border: 1px solid var(--line);
      color: var(--coffee-dark);
      padding: 11px 14px;
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(72, 44, 24, 0.08);
      font-weight: 800;
      white-space: nowrap;
    }

    .table-pill span {
      width: 29px;
      height: 29px;
      border-radius: 50%;
      background: var(--coffee);
      color: var(--white);
      display: grid;
      place-items: center;
      font-size: 14px;
    }

    .hero {
      margin-top: 26px;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 24px;
      align-items: stretch;
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      min-height: 360px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(63, 38, 24, 0.92), rgba(139, 94, 60, 0.76)),
        url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1300&q=80") center/cover;
      color: var(--white);
      box-shadow: var(--shadow);
      padding: clamp(26px, 5vw, 48px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -80px;
      width: 230px;
      height: 230px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
    }

    .hero-badge {
      width: fit-content;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.24);
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 800;
      backdrop-filter: blur(12px);
    }

    .hero-title {
      position: relative;
      z-index: 2;
      max-width: 650px;
    }

    .hero-title h2 {
      font-size: clamp(36px, 8vw, 72px);
      line-height: 0.92;
      letter-spacing: -2px;
      margin-bottom: 18px;
    }

    .hero-title p {
      max-width: 540px;
      color: rgba(255, 255, 255, 0.84);
      line-height: 1.7;
      font-size: 16px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .btn {
      border-radius: 999px;
      padding: 13px 18px;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: 0.22s ease;
    }

    .btn-primary {
      background: var(--white);
      color: var(--coffee-dark);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.14);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .showcase-stack {
      display: grid;
      gap: 18px;
    }

    .showcase-card {
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 20px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 92px 1fr;
      grid-template-areas:
        "image label"
        "image content";
      align-items: center;
      gap: 16px;
      color: inherit;
      text-decoration: none;
      cursor: pointer;
      transition: 0.22s ease;
    }

    .showcase-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 55px rgba(72, 44, 24, 0.16);
    }

    .showcase-img {
      grid-area: image;
      width: 92px;
      height: 92px;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: 0 14px 26px rgba(72, 44, 24, 0.14);
    }

    .showcase-label {
      grid-area: label;
      align-self: end;
      color: var(--coffee);
      font-weight: 900;
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.9px;
    }

    .showcase-content {
      grid-area: content;
      align-self: start;
    }

    .showcase-card h3 {
      margin: 6px 0;
      color: var(--coffee-dark);
      font-size: 21px;
    }

    .showcase-card p {
      color: var(--muted);
      line-height: 1.5;
      font-size: 14px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin: 42px 0 18px;
    }

    .section-head small {
      color: var(--coffee);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-head h2 {
      color: var(--coffee-dark);
      font-size: clamp(26px, 5vw, 40px);
      margin-top: 5px;
    }

    .section-head p {
      color: var(--muted);
      max-width: 430px;
      line-height: 1.6;
      text-align: right;
    }

    .categories {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 15px;
    }

    .category-card {
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      min-height: 160px;
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      box-shadow: 0 14px 30px rgba(72, 44, 24, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.65);
      isolation: isolate;
    }

    .category-card img {
      width: 100%;
      height: 100%;
      min-height: 160px;
      object-fit: cover;
      transition: 0.35s ease;
    }

    .category-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(63, 38, 24, 0.78), rgba(63, 38, 24, 0.04));
      z-index: 1;
    }

    .category-card span {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 2;
      color: var(--white);
      font-weight: 900;
      font-size: 17px;
    }

    .category-card:hover img {
      transform: scale(1.08);
    }

    .category-card.active {
      outline: 4px solid rgba(139, 94, 60, 0.28);
      transform: translateY(-3px);
    }

    .menu-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 345px;
      gap: 24px;
      align-items: start;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .product-card {
      background: rgba(241, 223, 202, 0.96);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: 0 18px 42px rgba(72, 44, 24, 0.1);
      transition: 0.22s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 55px rgba(72, 44, 24, 0.16);
    }

    .product-image-wrap {
      position: relative;
      height: 205px;
      overflow: hidden;
      background: var(--cream);
    }

    .product-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .discount {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--danger);
      color: var(--white);
      padding: 8px 11px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      box-shadow: 0 10px 20px rgba(184, 92, 56, 0.25);
    }

    .product-content {
      padding: 18px;
      background: var(--cream);
    }

    .product-category {
      color: var(--coffee);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 8px;
    }

    .product-content h3 {
      color: var(--coffee-dark);
      font-size: 22px;
      margin-bottom: 9px;
    }

    .product-content p {
      color: var(--muted);
      line-height: 1.55;
      font-size: 14px;
      min-height: 43px;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 18px;
      padding: 12px 14px;
      border-radius: 16px;
      background: var(--bg-soft);
    }

    .price {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .price strong {
      color: var(--coffee-dark);
      font-size: 23px;
    }

    .price del {
      color: var(--muted);
      font-size: 13px;
    }

    .order-btn {
      background: var(--coffee-dark);
      color: var(--white);
      border-radius: 999px;
      padding: 12px 15px;
      font-weight: 900;
      white-space: nowrap;
      transition: 0.22s ease;
    }

    .order-btn:hover {
      background: var(--coffee);
      transform: translateY(-2px);
    }

    .cart {
      position: sticky;
      top: 98px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .cart h3 {
      color: var(--coffee-dark);
      font-size: 23px;
      margin-bottom: 4px;
    }

    .cart-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 4px;
    }

    .cart-close {
      display: none;
      background: var(--cream);
      color: var(--coffee-dark);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 9px 12px;
      font-weight: 900;
    }

    .cart-desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .cart-list {
      display: grid;
      gap: 12px;
      max-height: 310px;
      overflow-y: auto;
      padding-right: 4px;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 12px;
      border-radius: 17px;
      background: var(--cream);
      border: 1px solid var(--line);
    }

    .cart-item b {
      display: block;
      color: var(--coffee-dark);
      font-size: 14px;
      margin-bottom: 3px;
    }

    .cart-item small {
      color: var(--muted);
      font-weight: 700;
    }

    .cart-item em {
      display: block;
      margin-top: 6px;
      color: var(--coffee);
      font-size: 12px;
      font-style: normal;
      font-weight: 800;
      line-height: 1.35;
    }

    .cart-total {
      border-top: 1px dashed var(--line);
      margin-top: 16px;
      padding-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--coffee-dark);
      font-weight: 900;
      font-size: 20px;
    }

    .confirm-cart {
      width: 100%;
      margin-top: 16px;
      background: linear-gradient(135deg, var(--coffee-dark), var(--coffee));
      color: var(--white);
      border-radius: 18px;
      padding: 15px;
      font-weight: 900;
      box-shadow: 0 14px 26px rgba(63, 38, 24, 0.18);
    }

    .empty-cart {
      color: var(--muted);
      background: var(--cream);
      border: 1px dashed var(--latte);
      border-radius: 18px;
      padding: 18px;
      line-height: 1.5;
      text-align: center;
    }

    .mobile-cart-bar {
      position: fixed;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 70;
      display: none;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 22px;
      background: var(--coffee-dark);
      color: var(--white);
      box-shadow: 0 18px 45px rgba(63, 38, 24, 0.34);
    }

    .mobile-cart-bar button {
      background: var(--white);
      color: var(--coffee-dark);
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 900;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(47, 33, 25, 0.55);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal {
      width: min(430px, 100%);
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      background: var(--white);
      border-radius: 30px;
      padding: 22px;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
      animation: pop 0.18s ease;
    }

    @keyframes pop {
      from {
        transform: scale(0.96) translateY(10px);
        opacity: 0;
      }
      to {
        transform: scale(1) translateY(0);
        opacity: 1;
      }
    }

    .modal-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: start;
      margin-bottom: 18px;
    }

    .modal-head h3 {
      color: var(--coffee-dark);
      font-size: 25px;
      margin-bottom: 5px;
    }

    .modal-head p {
      color: var(--muted);
      line-height: 1.5;
      font-size: 14px;
    }

    .close-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--cream);
      color: var(--coffee-dark);
      font-size: 22px;
      font-weight: 900;
    }

    .qty-box {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 16px;
      margin: 18px 0;
    }

    .qty-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--coffee-dark);
      color: var(--white);
      font-size: 24px;
      font-weight: 900;
    }

    .qty-value {
      min-width: 48px;
      text-align: center;
      font-size: 28px;
      font-weight: 900;
      color: var(--coffee-dark);
    }

    .ingredient-note {
      display: grid;
      gap: 8px;
      margin: 18px 0;
    }

    .ingredient-note label {
      color: var(--coffee-dark);
      font-size: 14px;
      font-weight: 900;
    }

    .ingredient-note textarea {
      width: 100%;
      min-height: 86px;
      resize: vertical;
      padding: 13px 14px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: var(--cream);
      color: var(--text);
      font-family: inherit;
      font-size: 14px;
      outline: none;
    }

    .ingredient-note textarea:focus {
      border-color: var(--coffee);
      box-shadow: 0 0 0 4px rgba(139, 94, 60, 0.12);
    }

    .ingredient-options {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .ingredient-chip {
      padding: 9px 12px;
      border-radius: 999px;
      background: var(--cream);
      color: var(--coffee-dark);
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 900;
    }

    .ingredient-chip.active {
      background: var(--coffee-dark);
      color: var(--white);
      border-color: var(--coffee-dark);
    }

    .ingredient-note small {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .modal-actions {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 10px;
    }

    .modal-actions button {
      padding: 14px;
      border-radius: 17px;
      font-weight: 900;
    }

    .cancel-btn {
      background: var(--cream);
      color: var(--coffee-dark);
    }

    .add-btn {
      background: var(--coffee-dark);
      color: var(--white);
    }

    @media (max-width: 980px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .showcase-stack {
        grid-template-columns: repeat(3, 1fr);
      }

      .showcase-card {
        grid-template-columns: 1fr;
        grid-template-areas:
          "label"
          "image"
          "content";
      }

      .showcase-img {
        width: 100%;
        height: 140px;
      }

      .categories {
        grid-template-columns: repeat(3, 1fr);
      }

      .menu-layout {
        grid-template-columns: 1fr;
      }

      .cart {
        position: relative;
        top: 0;
      }
    }

    @media (max-width: 700px) {
      .page,
      .topbar-inner {
        width: min(100% - 24px, 1180px);
      }

      .topbar {
        padding: 12px 0;
      }

      .brand-logo {
        width: 42px;
        height: 42px;
      }

      .brand small {
        font-size: 10px;
      }

      .brand h1 {
        font-size: 17px;
      }

      .table-pill {
        padding: 9px 11px;
        font-size: 13px;
      }

      .hero-card {
        min-height: 430px;
        border-radius: 24px;
      }

      .hero-title h2 {
        letter-spacing: -1px;
      }

      .showcase-stack {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
      }

      .showcase-card {
        min-width: 240px;
        grid-template-columns: 1fr;
        grid-template-areas:
          "label"
          "image"
          "content";
        scroll-snap-align: start;
      }

      .showcase-img {
        width: 100%;
        height: 150px;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }

      .section-head p {
        text-align: left;
      }

      .categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        overflow-x: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
      }

      .category-card {
        width: 100%;
        min-width: 0;
        min-height: 150px;
        scroll-snap-align: none;
      }

      .products {
        grid-template-columns: 1fr;
      }

      .product-image-wrap {
        height: 220px;
      }

      .cart {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: 0;
        z-index: 1;
        display: block;
        max-height: none;
        overflow: visible;
        padding: 20px;
        margin-top: 22px;
        margin-bottom: 96px;
        border-radius: 24px;
        box-shadow: var(--shadow);
        transform: none;
        opacity: 1;
        pointer-events: auto;
      }

      .cart-close {
        display: none;
      }

      .mobile-cart-bar {
        display: flex;
      }

      .modal-overlay {
        align-items: flex-end;
        padding: 12px;
      }

      .modal {
        max-height: 88vh;
        border-radius: 26px 26px 20px 20px;
        padding: 18px;
      }

      .modal-head {
        margin-bottom: 12px;
      }

      .qty-box {
        margin: 12px 0;
        padding: 12px;
      }

      .ingredient-note {
        margin: 12px 0;
      }

      .ingredient-note textarea {
        min-height: 72px;
      }

      .site-footer {
        padding: 20px 0 88px;
      }

      .site-footer-inner {
        width: min(100% - 24px, 1180px);
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 18px;
      }

      .footer-divider {
        width: 100%;
        height: 1px;
      }

      .footer-copy {
        text-align: left;
      }
    }

    @media (max-width: 420px) {
      .topbar-inner {
        gap: 8px;
      }

      .brand-logo {
        display: none;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .showcase-card {
        grid-template-columns: 1fr;
        min-width: 260px;
      }

      .showcase-img {
        width: 100%;
        height: 150px;
      }

      .product-footer {
        align-items: stretch;
        flex-direction: column;
      }

      .order-btn {
        width: 100%;
      }
    }

    .menu-catalog-page {
      padding-bottom: 48px;
    }

    .catalog-hero {
      margin-top: 28px;
      min-height: 280px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      padding: clamp(28px, 5vw, 52px);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(63, 38, 24, 0.9), rgba(139, 94, 60, 0.62)),
        url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1400&q=80") center/cover;
      color: var(--white);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .catalog-hero small {
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }

    .catalog-hero h2 {
      max-width: 680px;
      margin-top: 8px;
      font-size: clamp(42px, 7vw, 78px);
      line-height: 0.95;
      letter-spacing: 0;
    }

    .catalog-hero p {
      max-width: 560px;
      margin-top: 16px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      line-height: 1.55;
      font-weight: 700;
    }

    .catalog-products {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalog-product-card {
      display: grid;
      min-height: 100%;
    }

    .catalog-product-card .product-image-wrap {
      height: 260px;
    }

    .catalog-product-card .product-content {
      display: grid;
      grid-template-rows: auto auto 1fr auto;
    }

    .catalog-product-card .product-content p {
      min-height: 0;
    }

    .catalog-product-card .product-footer {
      justify-content: flex-start;
    }

    .catalog-product-card .price strong {
      font-size: 28px;
    }

    .cart,
    .mobile-cart-bar,
    .modal-overlay {
      display: none;
    }

    @media (max-width: 980px) {
      .catalog-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .catalog-hero {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
      }
    }

    @media (max-width: 700px) {
      .menu-catalog-page {
        padding-bottom: 48px;
      }

      .catalog-hero {
        min-height: 360px;
        border-radius: 24px;
      }

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

      .catalog-product-card .product-image-wrap {
        height: 240px;
      }
    }
