    
    h1, h2, h3 {
      font-family: var(--font-heading);
    }

    .container {
      max-width: 1200px;
      margin: 110px auto;
      padding: 0 20px;
    }

    @keyframes headerFade {
      0% { opacity: 0.8; }
      100% { opacity: 1; }
    }

    .header2 {
        background-color: var(--footer-background-color);
    }

    header h1 {
      font-size: 3rem;
      text-shadow: var(--hero-title-text-shadow);
      position: relative;
      z-index: 1;
    }

    header p {
      font-size: 1.25rem;
      margin-top: 0.5rem;
      color: #F2E8D5;
      text-shadow: var(--hero-subtitle-text-shadow);
      position: relative;
      z-index: 1;
    }

    main {
      padding: 3rem 0;
    }

    section {
      margin-bottom: 4rem;
    }

    h2 {
      font-size: 2.5rem;
      color: var(--color-dark);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50%;
      height: 3px;
      background: var(--color-primary);
      transition: width 0.3s ease;
    }

    h2:hover::after {
      width: 100%;
    }

    .menu-card {
      background: var(--pricing-table-background-color);
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: var(--pricing-table-box-shadow);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      margin: 25px 0;
    }

    .menu-card span {
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      padding: 5px;
      border-radius: 5px;
    }

    .pixlyPrice {
      white-space: nowrap;
    }

    .drink-column {
      width: 100%;
      display: inline-flex;
      justify-content: space-between;
    }

    .drink-item {
      width: 50%;

    }

    .content-right-position {
      display: flex;
      justify-content: flex-end;
    }

    .content-center-position {
      display: flex;
      justify-content: center;
    }

     .drink-column {
      padding: 5px;
      border-radius: 5px;
      cursor: pointer;
     }

    .drink-column:hover {
      background: rgb(38, 38, 38);
      color: white;
    }

     .drink-column:hover h3 {
      color: white;
     }

    /* .menu-card span p p {
       white-space: nowrap;
    } */

   .menu-card span:hover{
      background: rgb(38, 38, 38);
      color: white;
    }

    .menu-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
      background: var(--pricing-table-tr-hover-background);
    }

    /* .menu-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(238, 203, 138, 0.3), transparent);
      transition: 0.5s;
    } */

    .menu-card:hover::before {
      left: 100%;
    }

    .menu-card h3 {
      font-size: 1.5rem;
      color: var(--color-dark);
      margin-bottom: 0.5rem;
    }

    .menu-card p {
      /* color: var(--color-muted); */
      margin-bottom: 0.5rem;
    }

    /* .grid {
      display: grid;
      gap: 1.5rem;
    } */


    .oslavy {
      padding-bottom: 25px
    }

    .grid-1-2 {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .grid-1-3 {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .menu-card ul {
      list-style: disc;
      padding-left: 1.5rem;
      color: var(--color-muted);
    }

    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeIn 0.6s ease-out forwards;
    }

    .modals-content {  
      height: 615px !important;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 2rem;
      }

      .menu-card h3 {
        font-size: 1.25rem;
      }
    }

