

    /* ----- CF7 FORMA ----- */
    .wpcf7-form {
      max-width: 480px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    /* ----- SVAKI LABEL (sadrži label tekst + input) ----- */
    .wpcf7-form label {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: #ffffff;   /* clay-300 */
      font-size: 16px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      width: 100%;
    }

    /* ----- SVI INPUTI I TEXTAREA ----- */
    .wpcf7-form .wpcf7-form-control:not(.wpcf7-submit) {
      background: transparent;
      border: 0;
      border-bottom: 1px solid rgba(225, 215, 205, 0.3);
      color: #e1d7cd;
      font-size: 16px;
      padding: 10px 0;
      outline: none;
      transition: border-color 0.3s ease;
      width: 100%;
      font-family: inherit;
    }

    /* specifično za textarea */
    .wpcf7-form textarea.wpcf7-form-control {
      resize: none;
      min-height: 72px;
    }

    /* fokus - border postaje clay */
    .wpcf7-form .wpcf7-form-control:not(.wpcf7-submit):focus {
      border-bottom-color: #8c7a6e; /* clay */
    }

    /* ----- SUBMIT DUGME ----- */
    .wpcf7-form .wpcf7-submit {
      background: #7C5E2C !important;
      border: 0;
      color: #ffffff;
      font-size: 16px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 16px;
      cursor: pointer;
      transition: color 0.3s ease;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: inherit;
      position: relative;
    }

    /* Dodajemo strelicu desno preko pseudo-elementa */
    .wpcf7-form .wpcf7-submit::after {
      content: "→";
      font-size: 20px;
      line-height: 1;
    }

    /* hover efekat */
    .wpcf7-form .wpcf7-submit:hover {
      opacity: 0.6;
    }

    /* ----- SPINNER (CF7 default) ----- */
    /* .wpcf7-spinner {
      display: none !important;
    } */

    /* ----- RESPONSE OUTPUT ----- */
    .wpcf7-response-output {
      color: #e1d7cd;
      font-size: 14px;
      padding: 10px 0;
      margin: 0;
    }

    /* ----- hidden fields container (ne prikazujemo) ----- */
    .hidden-fields-container {
      display: none;
    }

    /* ----- Akismet polja (sakrijemo) ----- */
    .akismet-fields-container {
      display: none !important;
    }

    /* ----- RESPONZIVNOST ----- */
    @media (max-width: 500px) {
      .wpcf7-form {
        padding: 0 10px;
      }
    }