
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .brand-font {
      font-family: 'Outfit', sans-serif;
      font-weight: normal;
      text-transform: uppercase;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background: #F5F4EF;
      color: #1A1A1A;
      overflow-x: hidden
    }

    .gt {
      background: linear-gradient(135deg, #E85420, #F5B800);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    @keyframes scrollA {
      0% {
        transform: translateY(0)
      }

      100% {
        transform: translateY(-50%)
      }
    }

    @keyframes scrollB {
      0% {
        transform: translateY(-5%)
      }

      100% {
        transform: translateY(-55%)
      }
    }

    @keyframes scrollC {
      0% {
        transform: translateY(-10%)
      }

      100% {
        transform: translateY(-60%)
      }
    }

    .sa {
      animation: scrollA 22s linear infinite
    }

    .sb {
      animation: scrollB 29s linear infinite
    }

    .sc {
      animation: scrollC 25s linear infinite
    }

    @keyframes wap {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5)
      }

      70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0)
      }
    }

    .wp {
      animation: wap 2.5s infinite
    }

    @keyframes mIn {
      from {
        opacity: 0;
        transform: scale(.94) translateY(18px)
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0)
      }
    }

    .mi {
      animation: mIn .32s cubic-bezier(.34, 1.56, .64, 1) forwards
    }

    @keyframes fiu {
      from {
        opacity: 0;
        transform: translateY(22px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes kenBurns {

      0%,
      100% {
        transform: scale(1) translate(0, 0)
      }

      33% {
        transform: scale(1.08) translate(-1.2%, .4%)
      }

      66% {
        transform: scale(1.05) translate(.8%, -.3%)
      }
    }

    .kburn {
      animation: kenBurns 24s ease-in-out infinite;
      will-change: transform;
      transform-origin: center center
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .ticker {
      animation: ticker 55s linear infinite;
      display: flex;
      width: max-content
    }

    .ticker:hover {
      animation-play-state: paused
    }

    .ticker-wrap {
      overflow: hidden;
      position: relative
    }

    .fiu {
      animation: fiu .9s ease both
    }

    .pcard {
      transition: transform .25s ease, box-shadow .25s ease;
      cursor: pointer
    }

    .pcard:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .15) !important
    }

    .pcard:hover .pimg {
      transform: scale(1.06)
    }

    .pimg {
      transition: transform .4s ease;
      width: 100%;
      height: 100%;
      object-fit: cover;
      background: #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #999;
      font-size: 24px;
    }

    .btng {
      transition: opacity .2s, transform .1s;
      cursor: pointer
    }

    .btng:hover {
      opacity: .88;
      transform: scale(1.02)
    }

    .btng:active {
      transform: scale(.97)
    }

    .cscroll::-webkit-scrollbar {
      display: none
    }

    .cscroll {
      -ms-overflow-style: none;
      scrollbar-width: none
    }

    .tmask {
      mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
      -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent)
    }

    .faqans {
      max-height: 0;
      overflow: hidden;
      transition: max-height .38s ease, opacity .3s ease, padding .3s ease;
      opacity: 0
    }

    .faqans.open {
      max-height: 400px;
      opacity: 1;
      padding-bottom: 20px
    }

    input,
    textarea,
    select {
      font-family: 'Open Sans', sans-serif;
      border: 2px solid #E0E0DA;
      border-radius: 12px;
      transition: border-color .2s;
      background: white;
      color: #1A1A1A;
      padding: 12px 16px;
      font-size: 15px;
      width: 100%;
    }

    input:focus,
    textarea:focus,
    select:focus {
      outline: none;
      border-color: #2E7D1A
    }

    /* Cart & Modal specific */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .cart-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -400px;
      width: 100%;
      max-width: 400px;
      height: 100vh;
      background: white;
      z-index: 1000;
      transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .cart-sidebar.active {
      right: 0;
    }

    .checkout-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1001;
      align-items: center;
      justify-content: center;
    }

    .checkout-modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      max-height: 90vh;
      overflow-y: auto;
    }

    .form-group {
      margin-bottom: 15px;
      text-align: left;
    }

    .form-group label {
      display: block;
      font-weight: 700;
      margin-bottom: 6px;
      font-size: 14px;
    }

    .badge-closed {
      background: #fee2e2;
      color: #991b1b;
      padding: 12px;
      font-weight: bold;
      text-align: center;
    }

    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .admin-card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      margin: 30px auto;
      max-width: 1000px;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 38px !important;
        line-height: 1.1 !important;
      }

      #productsContainer,
      #queridinhosProducts,
      #complementosProducts {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        gap: 12px !important;
      }

      .tmask {
        grid-template-columns: 1fr !important;
        max-height: none !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
      }

      .sa,
      .sb,
      .sc {
        animation: none !important;
      }

      .hero-section {
        min-height: 480px !important;
      }

      .hero-section .fiu {
        padding-top: 40px !important;
      }

      .checkout-modal .modal-content {
        padding: 20px !important;
        border-radius: 16px !important;
        width: 90% !important;
        margin: 0 auto;
      }

      .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
      }

      .footer-grid>div {
        align-items: center;
        display: flex;
        flex-direction: column;
      }

      .footer-grid p {
        text-align: center;
      }
    }

    .mobile-menu-btn {
      display: block;
      background: none;
      border: none;
      font-size: 24px;
      color: #1B4D0C;
      cursor: pointer;
    }

    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .nav-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-menu {
      position: fixed;
      top: 0;
      left: -400px;
      width: 100%;
      max-width: 320px;
      height: 100vh;
      background: #F9F9F9;
      flex-direction: column;
      padding: 0;
      box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
      margin: 0;
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
    }

    .nav-menu.show {
      left: 0;
      max-height: none;
    }

    @media (max-width: 768px) {
      .cart-btn-header span:last-child {
        display: none;
      }
    }
  

        body {
          font-family: 'Open Sans', sans-serif;
          background: #F5F4EF;
          color: #1A1A1A;
          margin: 0;
          padding: 0;
          display: flex;
          flex-direction: column;
          min-height: 100vh;
        }

        .btn-voltar {
          background: linear-gradient(135deg, #E85420, #F5B800);
          color: white;
          border-radius: 12px;
          padding: 16px 32px;
          font-family: 'Outfit', sans-serif;
          font-weight: normal;

          font-size: 18px;
          text-transform: uppercase;
          text-decoration: none;
          display: inline-block;
          margin-top: 30px;
          box-shadow: 0 8px 24px rgba(232, 84, 32, .4);
          transition: transform 0.2s;
        }

        .btn-voltar:hover {
          transform: translateY(-4px);
        }

        @media (max-width: 768px) {
          .hero-title {
            font-size: 38px !important;
            line-height: 1.1 !important;

          }

          #productsContainer,
          #queridinhosProducts,
          #complementosProducts {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
            gap: 12px !important;
          }

          .tmask {
            grid-template-columns: 1fr !important;
            max-height: none !important;
            mask-image: none !important;
            -webkit-mask-image: none !important;
          }

          .sa,
          .sb,
          .sc {
            animation: none !important;
          }

          .hero-section {
            min-height: 480px !important;
          }

          .hero-section .fiu {
            padding-top: 40px !important;
          }

          .checkout-modal .modal-content {
            padding: 20px !important;
            border-radius: 16px !important;
          }
        }

        .mobile-menu-btn {
          display: block;
          background: none;
          border: none;
          font-size: 24px;
          color: #1B4D0C;
          cursor: pointer;
        }

        .nav-menu {
          position: fixed;
          top: 0;
          left: -400px;
          width: 100%;
          max-width: 300px;
          height: 100vh;
          background: white;
          flex-direction: column;
          padding: 80px 24px 24px 24px;
          box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
          gap: 20px;
          margin: 0;
          transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          z-index: 1000;
        }

        .nav-menu.show {
          left: 0;
          max-height: none;
        }

        @media (max-width: 768px) {
          .cart-btn-header span:last-child {
            display: none;
          }
        }
      